blob: 5082129c775d4a38b5d9656d93f85bb9ca720096 [file] [log] [blame]
jimmydot3982f4f2017-05-07 14:58:24 -04001<?xml version="1.0"?>
2<project
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5 <modelVersion>4.0.0</modelVersion>
6
7 <!-- This is the Maven project object model (POM) file for VID web application
8 based on the ECOMP SDK distribution. This file stands alone; it does not
9 inherit from a parent maven module. -->
Ofir Sonsino1cfb0872018-01-31 17:19:00 +020010 <groupId>org.onap.vid</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -040011 <artifactId>vid-app-common</artifactId>
Sonsino, Ofir (os0695)ba59d122018-08-26 14:51:39 +030012 <version>3.0.0-SNAPSHOT</version>
jimmydot3982f4f2017-05-07 14:58:24 -040013 <packaging>war</packaging>
14 <name>VID Common</name>
15 <description>VID Common code for opensource version</description>
16
17 <properties>
jimmydotf88fada2017-05-07 19:42:59 -040018 <encoding>UTF-8</encoding>
19 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Sonsino, Ofir (os0695)7059a9c2018-09-05 16:06:16 +030021 <epsdk.version>2.4.0</epsdk.version>
Sonsino, Ofir (os0695)745b4d52018-04-03 10:53:27 +030022 <springframework.version>4.2.9.RELEASE</springframework.version>
jimmydotf88fada2017-05-07 19:42:59 -040023 <hibernate.version>4.3.11.Final</hibernate.version>
24 <!-- Skip assembling the zip by default -->
25 <skipassembly>true</skipassembly>
26 <!-- Tests usually require some setup that maven cannot do, so skip. -->
Ofir Sonsino3274b392017-10-08 15:04:04 +030027 <skiptests>false</skiptests>
jimmydotf88fada2017-05-07 19:42:59 -040028 <nexusproxy>https://nexus.onap.org</nexusproxy>
29 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
30 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
31 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +020032 <sitePath>/content/sites/site/org/onap/vid/${project.version}</sitePath>
jimmydot3982f4f2017-05-07 14:58:24 -040033 </properties>
jimmydotf88fada2017-05-07 19:42:59 -040034
35
jimmydot3982f4f2017-05-07 14:58:24 -040036 <!-- this should be commented for local debugging -->
37 <!-- <deployenv>local</deployenv> -->
jimmydotf88fada2017-05-07 19:42:59 -040038
jimmydot3982f4f2017-05-07 14:58:24 -040039 <repositories>
jimmydotf88fada2017-05-07 19:42:59 -040040 <repository>
41 <id>ecomp-releases</id>
42 <name>VID Release Repository</name>
43 <url>${nexusproxy}${releaseNexusPath}</url>
44 </repository>
45 <repository>
46 <id>ecomp-snapshots</id>
47 <name>VID Snapshot Repository</name>
48 <url>${nexusproxy}${snapshotNexusPath}</url>
49 </repository>
50 <repository>
51 <id>ecomp-staging</id>
52 <name>VID Staging Repository</name>
53 <url>${nexusproxy}${stagingNexusPath}</url>
54 </repository>
55 <repository>
56 <!-- Snapshots repository has ECOMP snapshot artifacts -->
57 <id>oss-snapshots</id>
58 <name>oss Central - Snapshots</name>
59 <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url>
60 </repository>
61
jimmydot3982f4f2017-05-07 14:58:24 -040062 </repositories>
jimmydotf88fada2017-05-07 19:42:59 -040063 <distributionManagement>
64 <repository>
65 <id>ecomp-releases</id>
66 <name>VID Release Repository</name>
67 <url>${nexusproxy}/${releaseNexusPath}</url>
68 </repository>
69 <snapshotRepository>
70 <id>ecomp-snapshots</id>
71 <name>VID Snapshot Repository</name>
72 <url>${nexusproxy}/${snapshotNexusPath}</url>
73 </snapshotRepository>
74 <!-- added for javadoc -->
75 <site>
76 <id>ecomp-site</id>
77 <url>dav:${nexusproxy}${sitePath}</url>
78 </site>
79 </distributionManagement>
80
jimmydot3982f4f2017-05-07 14:58:24 -040081 <build>
82 <finalName>vid-common</finalName>
jimmydotf88fada2017-05-07 19:42:59 -040083
jimmydot3982f4f2017-05-07 14:58:24 -040084 <plugins>
85 <plugin>
jimmydotf88fada2017-05-07 19:42:59 -040086 <groupId>org.sonatype.plugins</groupId>
87 <artifactId>nexus-staging-maven-plugin</artifactId>
88 <version>1.6.7</version>
89 <extensions>true</extensions>
90 <configuration>
91 <nexusUrl>${nexusproxy}</nexusUrl>
92 <stagingProfileId>176c31dfe190a</stagingProfileId>
93 <serverId>ecomp-staging</serverId>
94 </configuration>
95 </plugin>
96 <plugin>
Ofir Sonsino3274b392017-10-08 15:04:04 +030097 <groupId>org.jacoco</groupId>
98 <artifactId>jacoco-maven-plugin</artifactId>
99 <version>0.7.9</version>
jimmydot3982f4f2017-05-07 14:58:24 -0400100 <executions>
101 <execution>
Ofir Sonsino3274b392017-10-08 15:04:04 +0300102 <id>default-prepare-agent</id>
jimmydot3982f4f2017-05-07 14:58:24 -0400103 <goals>
Ofir Sonsino3274b392017-10-08 15:04:04 +0300104 <goal>prepare-agent</goal>
105 </goals>
106 </execution>
107 <execution>
108 <id>default-report</id>
109 <goals>
110 <goal>report</goal>
jimmydot3982f4f2017-05-07 14:58:24 -0400111 </goals>
112 </execution>
113 </executions>
114 </plugin>
115 <plugin>
116 <groupId>org.apache.tomcat.maven</groupId>
117 <artifactId>tomcat6-maven-plugin</artifactId>
118 <version>2.2</version>
119 </plugin>
120 <plugin>
121 <groupId>org.apache.tomcat.maven</groupId>
122 <artifactId>tomcat7-maven-plugin</artifactId>
123 <version>2.2</version>
124 </plugin>
125
126 <!-- Generate POJOs from MSO json schema -->
127 <plugin>
128 <groupId>org.jsonschema2pojo</groupId>
129 <artifactId>jsonschema2pojo-maven-plugin</artifactId>
130 <version>0.4.23</version>
131 <configuration>
132 <sourceDirectory>${basedir}/src/main/resources/json/mso</sourceDirectory>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +0200133 <targetPackage>org.onap.vid.domain.mso</targetPackage>
jimmydot3982f4f2017-05-07 14:58:24 -0400134 <outputDirectory>${project.build.directory}/generated-sources</outputDirectory>
135 </configuration>
136 <executions>
137 <execution>
138 <goals>
139 <goal>generate</goal>
140 </goals>
141 </execution>
142 </executions>
143 </plugin>
144
145 <plugin>
146 <groupId>org.apache.maven.plugins</groupId>
147 <artifactId>maven-compiler-plugin</artifactId>
148 <version>3.1</version>
149 <configuration>
150 <source>1.8</source>
151 <target>1.8</target>
152 </configuration>
153 </plugin>
154
155 <plugin>
156 <groupId>org.apache.maven.plugins</groupId>
157 <artifactId>maven-surefire-plugin</artifactId>
158 <version>2.19.1</version>
159 <configuration>
160 <skipTests>${skiptests}</skipTests>
161 <includes>
162 <include>**/Test*.java</include>
163 <include>**/*Test.java</include>
164 <include>**/*TestCase.java</include>
165 </includes>
166 <excludes>
167 <exclude>**/selenium/*.java</exclude>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +0200168 <exclude>**/integrationTest/*.java</exclude>
jimmydot3982f4f2017-05-07 14:58:24 -0400169 </excludes>
170 <additionalClasspathElements>
171 <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
172 </additionalClasspathElements>
173 <systemPropertyVariables>
174 <container.classpath>classpath:</container.classpath>
175 </systemPropertyVariables>
176 </configuration>
177 </plugin>
178
179 <plugin>
180 <artifactId>maven-assembly-plugin</artifactId>
181 <configuration>
182 <skipAssembly>${skipassembly}</skipAssembly>
183 <descriptors>
184 <descriptor>${basedir}/distribution.xml</descriptor>
185 </descriptors>
186 </configuration>
187 <executions>
188 <execution>
189 <id>make-assembly</id>
190 <phase>package</phase>
191 <goals>
192 <goal>single</goal>
193 </goals>
194 </execution>
195 </executions>
196 </plugin>
197
198
199 <plugin>
200 <groupId>org.apache.maven.plugins</groupId>
201 <artifactId>maven-war-plugin</artifactId>
202 <version>3.0.0</version>
203 <configuration>
204 <!-- Build a jar with all the Java classes -->
205 <attachClasses>true</attachClasses>
206 <!-- Do not put any jars in the war -->
207 <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
208 </configuration>
209 </plugin>
jimmydot15eae842017-05-09 11:03:39 -0400210 <plugin>
211 <groupId>org.apache.maven.plugins</groupId>
212 <artifactId>maven-site-plugin</artifactId>
213 <version>3.6</version>
214 <dependencies>
215 <dependency>
216 <groupId>org.apache.maven.wagon</groupId>
217 <artifactId>wagon-webdav-jackrabbit</artifactId>
218 <version>2.10</version>
219 </dependency>
220 </dependencies>
221 </plugin>
Joanna Jeremicz19067512018-09-05 12:53:18 +0200222 <plugin>
223 <groupId>pl.project13.maven</groupId>
224 <artifactId>git-commit-id-plugin</artifactId>
225 <version>2.2.4</version>
226 <executions>
227 <execution>
228 <id>get-the-git-infos</id>
229 <goals>
230 <goal>revision</goal>
231 </goals>
232 </execution>
233 </executions>
234 <configuration>
235 <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
236 <dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
237 <dateFormatTimeZone>${user.timezone}</dateFormatTimeZone>
238 <generateGitPropertiesFile>true</generateGitPropertiesFile>
239 <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
240 <includeOnlyProperties>
241 <includeOnlyProperty>^git.commit.id$</includeOnlyProperty>
242 <includeOnlyProperty>^git.commit.message.short$</includeOnlyProperty>
243 <includeOnlyProperty>^git.commit.time$</includeOnlyProperty>
244 </includeOnlyProperties>
245 </configuration>
246 </plugin>
jimmydot3982f4f2017-05-07 14:58:24 -0400247 </plugins>
jimmydot3982f4f2017-05-07 14:58:24 -0400248 </build>
249
jimmydot15eae842017-05-09 11:03:39 -0400250 <reporting>
251 <plugins>
252 <plugin>
253 <groupId>org.apache.maven.plugins</groupId>
254 <artifactId>maven-javadoc-plugin</artifactId>
255 <version>2.10.4</version>
256 <configuration>
257 <failOnError>false</failOnError>
258 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
259 <docletArtifact>
260 <groupId>org.umlgraph</groupId>
261 <artifactId>umlgraph</artifactId>
262 <version>5.6</version>
263 </docletArtifact>
264 <additionalparam>-views</additionalparam>
265 <useStandardDocletOptions>true</useStandardDocletOptions>
266 </configuration>
267 </plugin>
268 </plugins>
269 </reporting>
270
jimmydot3982f4f2017-05-07 14:58:24 -0400271 <dependencies>
Ofir Sonsinob94bd702018-02-11 19:21:35 +0200272
273 <dependency>
274 <groupId>com.opencsv</groupId>
275 <artifactId>opencsv</artifactId>
276 <version>4.1</version>
277 </dependency>
golabek985bc342018-08-01 15:56:44 +0200278
kobloszd47fd3b2018-08-20 16:42:57 +0200279 <!-- HTTP client -->
golabek985bc342018-08-01 15:56:44 +0200280
281 <dependency>
282 <groupId>io.joshworks.unirest</groupId>
283 <artifactId>unirest-java</artifactId>
284 <version>0.2.1</version>
285 </dependency>
286 <dependency>
287 <groupId>org.apache.httpcomponents</groupId>
288 <artifactId>httpclient</artifactId>
289 <version>4.3.6</version>
290 </dependency>
291 <dependency>
292 <groupId>org.apache.httpcomponents</groupId>
293 <artifactId>httpasyncclient</artifactId>
294 <version>4.0.2</version>
295 </dependency>
296 <dependency>
297 <groupId>org.apache.httpcomponents</groupId>
298 <artifactId>httpmime</artifactId>
299 <version>4.3.6</version>
300 </dependency>
kobloszd47fd3b2018-08-20 16:42:57 +0200301 <dependency>
302 <groupId>com.xebialabs.restito</groupId>
303 <artifactId>restito</artifactId>
304 <version>0.9.3</version>
305 <scope>test</scope>
306 </dependency>
jimmydot3982f4f2017-05-07 14:58:24 -0400307
golabek985bc342018-08-01 15:56:44 +0200308 <!-- Helpers -->
309 <dependency>
310 <groupId>org.projectlombok</groupId>
311 <artifactId>lombok</artifactId>
312 <version>1.18.2</version>
313 <scope>provided</scope>
314 </dependency>
315 <dependency>
316 <groupId>io.vavr</groupId>
317 <artifactId>vavr</artifactId>
318 <version>0.9.2</version>
319 </dependency>
320
321 <!-- SDK overlay war -->
jimmydot3982f4f2017-05-07 14:58:24 -0400322 <dependency>
Ofir Sonsino564a0d72017-10-22 17:03:35 +0300323 <groupId>org.onap.portal.sdk</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -0400324 <artifactId>epsdk-app-overlay</artifactId>
325 <version>${epsdk.version}</version>
326 <type>war</type>
327 </dependency>
328 <dependency>
Ofir Sonsino564a0d72017-10-22 17:03:35 +0300329 <groupId>org.onap.portal.sdk</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -0400330 <artifactId>epsdk-app-common</artifactId>
331 <version>${epsdk.version}</version>
332 <type>jar</type>
333 </dependency>
jimmydotf88fada2017-05-07 19:42:59 -0400334
jimmydot3982f4f2017-05-07 14:58:24 -0400335 <dependency>
Ofir Sonsino564a0d72017-10-22 17:03:35 +0300336 <groupId>org.onap.portal.sdk</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -0400337 <artifactId>epsdk-core</artifactId>
338 <version>${epsdk.version}</version>
339 </dependency>
340 <dependency>
Ofir Sonsino564a0d72017-10-22 17:03:35 +0300341 <groupId>org.onap.portal.sdk</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -0400342 <artifactId>epsdk-analytics</artifactId>
343 <version>${epsdk.version}</version>
344 </dependency>
345 <dependency>
Ofir Sonsino564a0d72017-10-22 17:03:35 +0300346 <groupId>org.onap.portal.sdk</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -0400347 <artifactId>epsdk-workflow</artifactId>
348 <version>${epsdk.version}</version>
349 </dependency>
350 <dependency>
351 <groupId>com.att.eelf</groupId>
352 <artifactId>eelf-core</artifactId>
353 <version>1.0.0</version>
354 </dependency>
Sonsino, Ofir (os0695)845e43d2018-03-19 18:37:37 +0200355 <dependency>
356 <groupId>ch.qos.logback</groupId>
357 <artifactId>logback-core</artifactId>
358 <version>1.2.3</version>
359 </dependency>
360 <dependency>
361 <groupId>ch.qos.logback</groupId>
362 <artifactId>logback-classic</artifactId>
363 <version>1.2.3</version>
364 </dependency>
jimmydot3982f4f2017-05-07 14:58:24 -0400365
366 <!-- Mapper -->
367 <dependency>
368 <groupId>com.fasterxml.jackson.core</groupId>
369 <artifactId>jackson-annotations</artifactId>
370 <version>2.6.3</version>
371 </dependency>
372 <dependency>
373 <groupId>com.fasterxml.jackson.core</groupId>
374 <artifactId>jackson-core</artifactId>
Sonsino, Ofir (os0695)745b4d52018-04-03 10:53:27 +0300375 <version>2.8.6</version>
jimmydot3982f4f2017-05-07 14:58:24 -0400376 </dependency>
377 <dependency>
378 <groupId>com.fasterxml.jackson.core</groupId>
379 <artifactId>jackson-databind</artifactId>
Sonsino, Ofir (os0695)845e43d2018-03-19 18:37:37 +0200380 <version>2.6.7.1</version>
jimmydot3982f4f2017-05-07 14:58:24 -0400381 </dependency>
382 <dependency>
383 <groupId>org.codehaus.jackson</groupId>
384 <artifactId>jackson-mapper-asl</artifactId>
385 <version>1.9.13</version>
386 </dependency>
387 <dependency>
388 <groupId>com.mchange</groupId>
389 <artifactId>c3p0</artifactId>
390 <version>0.9.5.2</version>
391 </dependency>
392 <dependency>
393 <groupId>io.searchbox</groupId>
394 <artifactId>jest</artifactId>
395 <version>2.0.0</version>
396 <exclusions>
397 <exclusion>
398 <groupId>commons-logging</groupId>
399 <artifactId>commons-logging</artifactId>
400 </exclusion>
401 </exclusions>
402 </dependency>
403 <dependency>
404 <groupId>javax.servlet</groupId>
405 <artifactId>javax.servlet-api</artifactId>
406 <version>3.1.0</version>
407 <scope>provided</scope>
408 </dependency>
409 <dependency>
410 <groupId>junit</groupId>
411 <artifactId>junit</artifactId>
412 <version>4.12</version>
413 </dependency>
414 <dependency>
golabek985bc342018-08-01 15:56:44 +0200415 <groupId>commons-io</groupId>
416 <artifactId>commons-io</artifactId>
417 <version>2.4</version>
418 <!--<scope>test</scope>-->
419 </dependency>
420 <dependency>
tgolabek5f147732018-05-21 12:13:08 +0200421 <groupId>com.google.code.bean-matchers</groupId>
422 <artifactId>bean-matchers</artifactId>
423 <version>0.11</version>
424 <scope>test</scope>
425 </dependency>
426 <dependency>
jimmydot3982f4f2017-05-07 14:58:24 -0400427 <groupId>org.json</groupId>
428 <artifactId>json</artifactId>
429 <version>20160212</version>
430 </dependency>
431 <dependency>
432 <groupId>org.quartz-scheduler</groupId>
433 <artifactId>quartz</artifactId>
434 <version>2.2.1</version>
435 <exclusions>
436 <!-- exclude 0.9.1.1 to avoid dupe of com.mchange:c3p0:0.9.2.1 -->
437 <exclusion>
438 <groupId>c3p0</groupId>
439 <artifactId>c3p0</artifactId>
440 </exclusion>
441 </exclusions>
442 </dependency>
443 <!-- bridge to implement commons-logging using slf4j -->
444 <dependency>
445 <groupId>org.slf4j</groupId>
446 <artifactId>jcl-over-slf4j</artifactId>
447 <version>1.7.12</version>
448 </dependency>
449 <dependency>
450 <groupId>org.springframework</groupId>
451 <artifactId>spring-context-support</artifactId>
452 <version>${springframework.version}</version>
453 </dependency>
454 <dependency>
455 <groupId>org.springframework</groupId>
456 <artifactId>spring-core</artifactId>
457 <version>${springframework.version}</version>
458 <exclusions>
459 <exclusion>
460 <groupId>commons-logging</groupId>
461 <artifactId>commons-logging</artifactId>
462 </exclusion>
463 </exclusions>
464 </dependency>
465 <dependency>
466 <groupId>org.springframework</groupId>
467 <artifactId>spring-test</artifactId>
468 <version>${springframework.version}</version>
469 </dependency>
470 <dependency>
471 <groupId>org.springframework</groupId>
472 <artifactId>spring-tx</artifactId>
473 <version>${springframework.version}</version>
474 </dependency>
475 <dependency>
476 <groupId>org.springframework</groupId>
477 <artifactId>spring-web</artifactId>
478 <version>${springframework.version}</version>
479 </dependency>
480 <dependency>
481 <groupId>org.springframework</groupId>
482 <artifactId>spring-webmvc</artifactId>
483 <version>${springframework.version}</version>
484 </dependency>
485 <dependency>
486 <groupId>org.glassfish.jersey.core</groupId>
487 <artifactId>jersey-client</artifactId>
488 <version>2.23.1</version>
489 </dependency>
490 <dependency>
491 <groupId>org.glassfish.jersey.connectors</groupId>
492 <artifactId>jersey-jetty-connector</artifactId>
493 <version>2.23.1</version>
494 </dependency>
495 <dependency>
496 <groupId>com.fasterxml.jackson.jaxrs</groupId>
497 <artifactId>jackson-jaxrs-json-provider</artifactId>
498 <version>2.6.3</version>
499 </dependency>
500 <dependency>
501 <groupId>commons-beanutils</groupId>
502 <artifactId>commons-beanutils</artifactId>
503 <version>1.9.3</version>
504 </dependency>
505 <dependency>
506 <groupId>com.googlecode.json-simple</groupId>
507 <artifactId>json-simple</artifactId>
508 <version>1.1.1</version>
509 </dependency>
510 <dependency>
511 <groupId>org.seleniumhq.selenium</groupId>
512 <artifactId>selenium-java</artifactId>
513 <version>2.53.1</version>
514 <scope>test</scope>
515 </dependency>
516 <dependency>
517 <groupId>org.seleniumhq.selenium</groupId>
518 <artifactId>selenium-api</artifactId>
519 <version>2.53.1</version>
520 <scope>test</scope>
521 </dependency>
522 <dependency>
523 <groupId>org.testng</groupId>
524 <artifactId>testng</artifactId>
525 <version>6.8</version>
526 <scope>test</scope>
527 </dependency>
528 <dependency>
529 <groupId>org.seleniumhq.selenium</groupId>
530 <artifactId>selenium-firefox-driver</artifactId>
531 <version>2.53.1</version>
532 </dependency>
533 <dependency>
534 <groupId>xml-apis</groupId>
535 <artifactId>xml-apis</artifactId>
536 <version>1.4.01</version>
537 </dependency>
538 <dependency>
jimmydot3982f4f2017-05-07 14:58:24 -0400539 <groupId>org.yaml</groupId>
540 <artifactId>snakeyaml</artifactId>
541 <version>1.16</version>
542 </dependency>
Ofir Sonsinob3567072017-09-04 14:52:07 +0300543 <dependency>
544 <groupId>org.skyscreamer</groupId>
545 <artifactId>jsonassert</artifactId>
546 <version>1.5.0</version>
547 </dependency>
548 <dependency>
Sonsino, Ofir (os0695)a94ec862018-03-19 15:22:39 +0200549 <groupId>org.onap.sdc.sdc-tosca</groupId>
Ofir Sonsinob3567072017-09-04 14:52:07 +0300550 <artifactId>sdc-tosca</artifactId>
Sonsino, Ofir (os0695)290473a2018-08-15 14:38:20 +0300551 <version>1.4.1</version>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +0200552 <scope>compile</scope>
Ofir Sonsinob3567072017-09-04 14:52:07 +0300553 </dependency>
554 <dependency>
555 <groupId>net.javacrumbs.json-unit</groupId>
556 <artifactId>json-unit</artifactId>
557 <version>1.23.0</version>
558 <scope>test</scope>
559 </dependency>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +0200560 <dependency>
561 <groupId>org.apache.commons</groupId>
562 <artifactId>commons-text</artifactId>
563 <version>1.1</version>
564 </dependency>
565 <dependency>
566 <groupId>org.hamcrest</groupId>
567 <artifactId>java-hamcrest</artifactId>
568 <version>2.0.0.0</version>
569 <scope>test</scope>
570 </dependency>
Sonsino, Ofir (os0695)c72d5652018-07-10 14:20:54 +0300571 <dependency>
572 <groupId>org.togglz</groupId>
573 <artifactId>togglz-spring-core</artifactId>
574 <version>2.5.0.Final</version>
575 </dependency>
kobloszd47fd3b2018-08-20 16:42:57 +0200576 <dependency>
577 <groupId>org.assertj</groupId>
578 <artifactId>assertj-core</artifactId>
579 <version>3.10.0</version>
580 <scope>compile</scope>
581 </dependency>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +0200582 </dependencies>
jimmydot3982f4f2017-05-07 14:58:24 -0400583</project>