Introduce JS unit tests into VID
[vid.git] / vid-app-common / pom.xml
1 <?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. -->
10     <groupId>org.onap.vid</groupId>
11     <artifactId>vid-app-common</artifactId>
12     <version>4.0.0-SNAPSHOT</version>
13     <packaging>war</packaging>
14     <name>VID Common</name>
15     <description>VID Common code for opensource version</description>
16
17     <properties>
18         <encoding>UTF-8</encoding>
19         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
21         <epsdk.version>2.4.0</epsdk.version>
22         <springframework.version>4.2.9.RELEASE</springframework.version>
23         <hibernate.version>4.3.11.Final</hibernate.version>
24         <jackson.version>2.9.7</jackson.version>
25         <jersey.version>2.27</jersey.version>
26         <surefire.version>2.22.1</surefire.version>
27
28         <!-- Skip assembling the zip by default -->
29         <skipassembly>true</skipassembly>
30         <nexusproxy>https://nexus.onap.org</nexusproxy>
31         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
32         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
33         <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
34         <sitePath>/content/sites/site/org/onap/vid/${project.version}</sitePath>
35
36         <aspectj.version>1.8.9</aspectj.version>
37         <kotlin.version>1.3.11</kotlin.version>
38         <kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
39
40         <eirslett.version>1.6</eirslett.version>
41         <node.version>v6.16.0</node.version>
42
43     </properties>
44
45
46     <!-- this should be commented for local debugging -->
47     <!-- <deployenv>local</deployenv> -->
48
49     <repositories>
50         <repository>
51             <id>ecomp-releases</id>
52             <name>VID Release Repository</name>
53             <url>${nexusproxy}${releaseNexusPath}</url>
54         </repository>
55         <repository>
56             <id>ecomp-snapshots</id>
57             <name>VID Snapshot Repository</name>
58             <url>${nexusproxy}${snapshotNexusPath}</url>
59         </repository>
60         <repository>
61             <id>ecomp-staging</id>
62             <name>VID Staging Repository</name>
63             <url>${nexusproxy}${stagingNexusPath}</url>
64         </repository>
65         <repository>
66             <!-- Snapshots repository has ECOMP snapshot artifacts -->
67             <id>oss-snapshots</id>
68             <name>oss Central - Snapshots</name>
69             <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url>
70         </repository>
71
72     </repositories>
73     <distributionManagement>
74         <repository>
75             <id>ecomp-releases</id>
76             <name>VID Release Repository</name>
77             <url>${nexusproxy}/${releaseNexusPath}</url>
78         </repository>
79         <snapshotRepository>
80             <id>ecomp-snapshots</id>
81             <name>VID Snapshot Repository</name>
82             <url>${nexusproxy}/${snapshotNexusPath}</url>
83         </snapshotRepository>
84         <!-- added for javadoc -->
85         <site>
86             <id>ecomp-site</id>
87             <url>dav:${nexusproxy}${sitePath}</url>
88         </site>
89     </distributionManagement>
90
91     <build>
92         <finalName>vid-common</finalName>
93
94         <plugins>
95
96             <plugin>
97                 <artifactId>kotlin-maven-plugin</artifactId>
98                 <groupId>org.jetbrains.kotlin</groupId>
99                 <version>${kotlin.version}</version>
100                 <executions>
101                     <execution>
102                         <id>compile</id>
103                         <goals> <goal>compile</goal> </goals>
104                         <configuration>
105                             <sourceDirs>
106                                 <sourceDir>${project.basedir}/src/main/java</sourceDir>
107                             </sourceDirs>
108                         </configuration>
109                     </execution>
110                     <execution>
111                         <id>test-compile</id>
112                         <goals> <goal>test-compile</goal> </goals>
113                         <configuration>
114                             <sourceDirs>
115                                 <sourceDir>${project.basedir}/src/test/java</sourceDir>
116                             </sourceDirs>
117                         </configuration>
118                     </execution>
119                 </executions>
120             </plugin>
121
122             <plugin>
123                 <groupId>org.sonatype.plugins</groupId>
124                 <artifactId>nexus-staging-maven-plugin</artifactId>
125                 <version>1.6.7</version>
126                 <extensions>true</extensions>
127                 <configuration>
128                     <nexusUrl>${nexusproxy}</nexusUrl>
129                     <stagingProfileId>176c31dfe190a</stagingProfileId>
130                     <serverId>ecomp-staging</serverId>
131                 </configuration>
132             </plugin>
133             <plugin>
134                 <groupId>org.jacoco</groupId>
135                 <artifactId>jacoco-maven-plugin</artifactId>
136                 <version>0.7.9</version>
137                 <executions>
138                     <execution>
139                         <id>default-prepare-agent</id>
140                         <goals>
141                             <goal>prepare-agent</goal>
142                         </goals>
143                     </execution>
144                     <execution>
145                         <id>default-report</id>
146                         <goals>
147                             <goal>report</goal>
148                         </goals>
149                     </execution>
150                 </executions>
151             </plugin>
152             <plugin>
153                 <groupId>org.apache.tomcat.maven</groupId>
154                 <artifactId>tomcat6-maven-plugin</artifactId>
155                 <version>2.2</version>
156             </plugin>
157             <plugin>
158                 <groupId>org.apache.tomcat.maven</groupId>
159                 <artifactId>tomcat7-maven-plugin</artifactId>
160                 <version>2.2</version>
161             </plugin>
162
163             <plugin>
164                 <groupId>com.github.eirslett</groupId>
165                 <artifactId>frontend-maven-plugin</artifactId>
166                 <version>${eirslett.version}</version>
167                 <executions>
168                     <execution>
169                         <id>install node and npm</id>
170                         <goals>
171                             <goal>install-node-and-npm</goal>
172                         </goals>
173                         <phase>generate-resources</phase>
174                         <configuration>
175                             <nodeVersion>${node.version}</nodeVersion>
176                         </configuration>
177                     </execution>
178                     <execution>
179                         <id>npm run-script build</id>
180                         <configuration>
181                             <arguments>run-script build</arguments>
182                         </configuration>
183                         <goals>
184                             <goal>npm</goal>
185                         </goals>
186                         <phase>generate-resources</phase>
187                     </execution>
188                 </executions>
189             </plugin>
190
191             <plugin>
192                 <groupId>org.apache.maven.plugins</groupId>
193                 <artifactId>maven-compiler-plugin</artifactId>
194                 <version>3.5.1</version>
195                 <configuration>
196                     <source>1.8</source>
197                     <target>1.8</target>
198                 </configuration>
199
200                 <executions>
201                     <!-- Replacing default-compile as it is treated specially by maven -->
202                     <execution>
203                         <id>default-compile</id>
204                         <phase>none</phase>
205                     </execution>
206                     <!-- Replacing default-testCompile as it is treated specially by maven -->
207                     <execution>
208                         <id>default-testCompile</id>
209                         <phase>none</phase>
210                     </execution>
211                     <execution>
212                         <id>java-compile</id>
213                         <phase>compile</phase>
214                         <goals> <goal>compile</goal> </goals>
215                     </execution>
216                     <execution>
217                         <id>java-test-compile</id>
218                         <phase>test-compile</phase>
219                         <goals> <goal>testCompile</goal> </goals>
220                     </execution>
221                 </executions>
222
223             </plugin>
224
225             <plugin>
226                 <groupId>org.apache.maven.plugins</groupId>
227                 <artifactId>maven-surefire-plugin</artifactId>
228                 <version>${surefire.version}</version>
229                 <configuration>
230                     <includes>
231                         <include>**/Test*.java</include>
232                         <include>**/*Test.java</include>
233                         <include>**/*TestCase.java</include>
234                     </includes>
235                     <excludes>
236                         <exclude>**/selenium/*.java</exclude>
237                         <exclude>**/integrationTest/*.java</exclude>
238                     </excludes>
239                     <additionalClasspathElements>
240                         <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
241                     </additionalClasspathElements>
242                     <systemPropertyVariables>
243                         <container.classpath>classpath:</container.classpath>
244                     </systemPropertyVariables>
245                     <useSystemClassLoader>false</useSystemClassLoader>
246                     <properties>
247                         <property>
248                             <!-- avoid running JUnit tests within surefire-testng provider -->
249                             <name>junit</name>
250                             <value>false</value>
251                         </property>
252                     </properties>
253                     <threadCount>1</threadCount>
254                 </configuration>
255                 <dependencies>
256                     <!-- Running TestNG and JUnit Tests -->
257                     <!-- https://maven.apache.org/surefire/maven-surefire-plugin/examples/testng.html -->
258                     <dependency>
259                         <groupId>org.apache.maven.surefire</groupId>
260                         <artifactId>surefire-junit47</artifactId>
261                         <version>${surefire.version}</version>
262                     </dependency>
263                     <dependency>
264                         <groupId>org.apache.maven.surefire</groupId>
265                         <artifactId>surefire-testng</artifactId>
266                         <version>${surefire.version}</version>
267                     </dependency>
268                 </dependencies>
269             </plugin>
270
271             <plugin>
272                 <artifactId>maven-assembly-plugin</artifactId>
273                 <configuration>
274                     <skipAssembly>${skipassembly}</skipAssembly>
275                     <descriptors>
276                         <descriptor>${basedir}/distribution.xml</descriptor>
277                     </descriptors>
278                 </configuration>
279                 <executions>
280                     <execution>
281                         <id>make-assembly</id>
282                         <phase>package</phase>
283                         <goals>
284                             <goal>single</goal>
285                         </goals>
286                     </execution>
287                 </executions>
288             </plugin>
289
290
291             <plugin>
292                 <groupId>org.apache.maven.plugins</groupId>
293                 <artifactId>maven-war-plugin</artifactId>
294                 <version>3.0.0</version>
295                 <configuration>
296                     <!-- Build a jar with all the Java classes -->
297                     <attachClasses>true</attachClasses>
298                     <!-- Do not put any jars in the war -->
299                     <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
300                 </configuration>
301             </plugin>
302             <plugin>
303                 <groupId>org.apache.maven.plugins</groupId>
304                 <artifactId>maven-site-plugin</artifactId>
305                 <version>3.6</version>
306                 <dependencies>
307                     <dependency>
308                         <groupId>org.apache.maven.wagon</groupId>
309                         <artifactId>wagon-webdav-jackrabbit</artifactId>
310                         <version>2.10</version>
311                     </dependency>
312                 </dependencies>
313             </plugin>
314             <plugin>
315                 <groupId>pl.project13.maven</groupId>
316                 <artifactId>git-commit-id-plugin</artifactId>
317                 <version>2.2.4</version>
318                 <executions>
319                     <execution>
320                         <id>get-the-git-infos</id>
321                         <goals>
322                             <goal>revision</goal>
323                         </goals>
324                     </execution>
325                 </executions>
326                 <configuration>
327                     <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
328                     <dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
329                     <dateFormatTimeZone>${user.timezone}</dateFormatTimeZone>
330                     <generateGitPropertiesFile>true</generateGitPropertiesFile>
331                     <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
332                     <includeOnlyProperties>
333                         <includeOnlyProperty>^git.commit.id$</includeOnlyProperty>
334                         <includeOnlyProperty>^git.commit.message.short$</includeOnlyProperty>
335                         <includeOnlyProperty>^git.commit.time$</includeOnlyProperty>
336                     </includeOnlyProperties>
337                 </configuration>
338             </plugin>
339         </plugins>
340     </build>
341
342     <reporting>
343         <plugins>
344             <plugin>
345                 <groupId>org.apache.maven.plugins</groupId>
346                 <artifactId>maven-javadoc-plugin</artifactId>
347                 <version>2.10.4</version>
348                 <configuration>
349                     <failOnError>false</failOnError>
350                     <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
351                     <docletArtifact>
352                         <groupId>org.umlgraph</groupId>
353                         <artifactId>umlgraph</artifactId>
354                         <version>5.6</version>
355                     </docletArtifact>
356                     <additionalparam>-views</additionalparam>
357                     <useStandardDocletOptions>true</useStandardDocletOptions>
358                 </configuration>
359             </plugin>
360         </plugins>
361     </reporting>
362
363     <dependencies>
364
365         <dependency>
366             <groupId>com.opencsv</groupId>
367             <artifactId>opencsv</artifactId>
368             <version>4.1</version>
369         </dependency>
370
371         <!-- HTTP client -->
372
373         <dependency>
374             <groupId>io.joshworks.unirest</groupId>
375             <artifactId>unirest-java</artifactId>
376             <version>0.2.1</version>
377         </dependency>
378         <dependency>
379             <groupId>org.apache.httpcomponents</groupId>
380             <artifactId>httpclient</artifactId>
381             <version>4.5.6</version>
382         </dependency>
383         <dependency>
384             <groupId>org.apache.httpcomponents</groupId>
385             <artifactId>httpasyncclient</artifactId>
386             <version>4.0.2</version>
387         </dependency>
388         <dependency>
389             <groupId>org.apache.httpcomponents</groupId>
390             <artifactId>httpmime</artifactId>
391             <version>4.3.6</version>
392         </dependency>
393         <dependency>
394             <groupId>com.xebialabs.restito</groupId>
395             <artifactId>restito</artifactId>
396             <version>0.9.3</version>
397             <scope>test</scope>
398         </dependency>
399
400         <!-- Helpers -->
401         <dependency>
402             <groupId>io.vavr</groupId>
403             <artifactId>vavr</artifactId>
404             <version>0.9.2</version>
405         </dependency>
406
407         <!-- SDK overlay war -->
408         <dependency>
409             <groupId>org.onap.portal.sdk</groupId>
410             <artifactId>epsdk-app-overlay</artifactId>
411             <version>${epsdk.version}</version>
412             <type>war</type>
413         </dependency>
414         <dependency>
415             <groupId>org.onap.portal.sdk</groupId>
416             <artifactId>epsdk-app-common</artifactId>
417             <version>${epsdk.version}</version>
418             <type>jar</type>
419         </dependency>
420
421         <dependency>
422             <groupId>org.onap.portal.sdk</groupId>
423             <artifactId>epsdk-core</artifactId>
424             <version>${epsdk.version}</version>
425         </dependency>
426         <dependency>
427             <groupId>org.onap.portal.sdk</groupId>
428             <artifactId>epsdk-analytics</artifactId>
429             <version>${epsdk.version}</version>
430             <exclusions>
431                 <exclusion>
432                     <groupId>com.lowagie</groupId>
433                     <artifactId>itext</artifactId>
434                 </exclusion>
435             </exclusions>
436         </dependency>
437         <dependency>
438             <groupId>org.onap.portal.sdk</groupId>
439             <artifactId>epsdk-workflow</artifactId>
440             <version>${epsdk.version}</version>
441         </dependency>
442         <dependency>
443             <groupId>com.att.eelf</groupId>
444             <artifactId>eelf-core</artifactId>
445             <version>1.0.0</version>
446             <exclusions>
447                 <exclusion>
448                     <artifactId>powermock-api-mockito</artifactId>
449                     <groupId>org.powermock</groupId>
450                 </exclusion>
451             </exclusions>
452         </dependency>
453         <dependency>
454             <groupId>ch.qos.logback</groupId>
455             <artifactId>logback-core</artifactId>
456             <version>1.2.3</version>
457         </dependency>
458         <dependency>
459             <groupId>ch.qos.logback</groupId>
460             <artifactId>logback-classic</artifactId>
461             <version>1.2.3</version>
462         </dependency>
463
464         <dependency>
465             <groupId>org.jetbrains.kotlin</groupId>
466             <artifactId>kotlin-stdlib-jdk8</artifactId>
467             <version>${kotlin.version}</version>
468         </dependency>
469
470         <!-- Mapper -->
471         <dependency>
472             <groupId>com.fasterxml.jackson.core</groupId>
473             <artifactId>jackson-annotations</artifactId>
474             <version>${jackson.version}</version>
475         </dependency>
476         <dependency>
477             <groupId>com.fasterxml.jackson.core</groupId>
478             <artifactId>jackson-core</artifactId>
479             <version>${jackson.version}</version>
480         </dependency>
481         <dependency>
482             <groupId>com.fasterxml.jackson.core</groupId>
483             <artifactId>jackson-databind</artifactId>
484             <version>${jackson.version}</version>
485         </dependency>
486         <dependency>
487             <groupId>com.fasterxml.jackson.module</groupId>
488             <artifactId>jackson-module-kotlin</artifactId>
489             <version>${jackson.version}</version>
490         </dependency>
491         <dependency>
492             <groupId>com.mchange</groupId>
493             <artifactId>c3p0</artifactId>
494             <version>0.9.5.2</version>
495         </dependency>
496         <dependency>
497             <groupId>io.searchbox</groupId>
498             <artifactId>jest</artifactId>
499             <version>2.0.0</version>
500             <exclusions>
501                 <exclusion>
502                     <groupId>commons-logging</groupId>
503                     <artifactId>commons-logging</artifactId>
504                 </exclusion>
505             </exclusions>
506         </dependency>
507         <dependency>
508             <groupId>javax.servlet</groupId>
509             <artifactId>javax.servlet-api</artifactId>
510             <version>3.1.0</version>
511             <scope>provided</scope>
512         </dependency>
513         <dependency>
514             <groupId>junit</groupId>
515             <artifactId>junit</artifactId>
516             <version>4.12</version>
517             <scope>test</scope>
518         </dependency>
519         <dependency>
520             <groupId>commons-io</groupId>
521             <artifactId>commons-io</artifactId>
522             <version>2.4</version>
523             <!--<scope>test</scope>-->
524         </dependency>
525         <dependency>
526             <groupId>com.google.code.bean-matchers</groupId>
527             <artifactId>bean-matchers</artifactId>
528             <version>0.11</version>
529             <scope>test</scope>
530         </dependency>
531         <dependency>
532             <groupId>org.json</groupId>
533             <artifactId>json</artifactId>
534             <version>20160212</version>
535         </dependency>
536         <dependency>
537             <groupId>org.quartz-scheduler</groupId>
538             <artifactId>quartz</artifactId>
539             <version>2.2.1</version>
540             <exclusions>
541                 <!-- exclude 0.9.1.1 to avoid dupe of com.mchange:c3p0:0.9.2.1 -->
542                 <exclusion>
543                     <groupId>c3p0</groupId>
544                     <artifactId>c3p0</artifactId>
545                 </exclusion>
546             </exclusions>
547         </dependency>
548         <!-- bridge to implement commons-logging using slf4j -->
549         <dependency>
550             <groupId>org.slf4j</groupId>
551             <artifactId>jcl-over-slf4j</artifactId>
552             <version>1.7.12</version>
553         </dependency>
554         <dependency>
555             <groupId>org.springframework</groupId>
556             <artifactId>spring-context-support</artifactId>
557             <version>${springframework.version}</version>
558         </dependency>
559         <dependency>
560             <groupId>org.springframework</groupId>
561             <artifactId>spring-core</artifactId>
562             <version>${springframework.version}</version>
563             <exclusions>
564                 <exclusion>
565                     <groupId>commons-logging</groupId>
566                     <artifactId>commons-logging</artifactId>
567                 </exclusion>
568             </exclusions>
569         </dependency>
570         <dependency>
571             <groupId>org.springframework</groupId>
572             <artifactId>spring-test</artifactId>
573             <version>${springframework.version}</version>
574         </dependency>
575         <dependency>
576             <groupId>org.springframework</groupId>
577             <artifactId>spring-tx</artifactId>
578             <version>${springframework.version}</version>
579         </dependency>
580         <dependency>
581             <groupId>org.springframework</groupId>
582             <artifactId>spring-web</artifactId>
583             <version>${springframework.version}</version>
584         </dependency>
585         <dependency>
586             <groupId>org.springframework</groupId>
587             <artifactId>spring-webmvc</artifactId>
588             <version>${springframework.version}</version>
589         </dependency>
590         <dependency>
591             <groupId>org.glassfish.jersey.core</groupId>
592             <artifactId>jersey-client</artifactId>
593             <version>${jersey.version}</version>
594         </dependency>
595         <dependency>
596             <groupId>org.glassfish.jersey.connectors</groupId>
597             <artifactId>jersey-jetty-connector</artifactId>
598             <version>${jersey.version}</version>
599         </dependency>
600         <!--https://stackoverflow.com/questions/44088493/jersey-stopped-working-with-injectionmanagerfactory-not-found-->
601         <dependency>
602             <groupId>org.glassfish.jersey.inject</groupId>
603             <artifactId>jersey-hk2</artifactId>
604             <version>${jersey.version}</version>
605         </dependency>
606         <dependency>
607             <groupId>com.fasterxml.jackson.jaxrs</groupId>
608             <artifactId>jackson-jaxrs-json-provider</artifactId>
609             <version>${jackson.version}</version>
610         </dependency>
611         <dependency>
612             <groupId>commons-beanutils</groupId>
613             <artifactId>commons-beanutils</artifactId>
614             <version>1.9.3</version>
615         </dependency>
616         <dependency>
617             <groupId>com.googlecode.json-simple</groupId>
618             <artifactId>json-simple</artifactId>
619             <version>1.1.1</version>
620         </dependency>
621         <dependency>
622             <groupId>org.seleniumhq.selenium</groupId>
623             <artifactId>selenium-java</artifactId>
624             <version>2.53.1</version>
625             <scope>test</scope>
626         </dependency>
627         <dependency>
628             <groupId>org.seleniumhq.selenium</groupId>
629             <artifactId>selenium-api</artifactId>
630             <version>2.53.1</version>
631             <scope>test</scope>
632         </dependency>
633         <dependency>
634             <groupId>org.testng</groupId>
635             <artifactId>testng</artifactId>
636             <version>6.14.3</version>
637             <scope>test</scope>
638         </dependency>
639         <dependency>
640             <groupId>org.mockito</groupId>
641             <artifactId>mockito-core</artifactId>
642             <version>2.23.0</version>
643             <scope>test</scope>
644         </dependency>
645         <dependency>
646             <groupId>org.seleniumhq.selenium</groupId>
647             <artifactId>selenium-firefox-driver</artifactId>
648             <version>2.53.1</version>
649         </dependency>
650         <dependency>
651             <groupId>xml-apis</groupId>
652             <artifactId>xml-apis</artifactId>
653             <version>1.4.01</version>
654         </dependency>
655         <dependency>
656             <groupId>org.yaml</groupId>
657             <artifactId>snakeyaml</artifactId>
658             <version>1.16</version>
659         </dependency>
660         <dependency>
661             <groupId>org.skyscreamer</groupId>
662             <artifactId>jsonassert</artifactId>
663             <version>1.5.0</version>
664             <scope>test</scope>
665         </dependency>
666         <dependency>
667             <groupId>org.onap.sdc.sdc-tosca</groupId>
668             <artifactId>sdc-tosca</artifactId>
669             <version>1.4.7</version>
670             <scope>compile</scope>
671         </dependency>
672         <dependency>
673             <groupId>net.javacrumbs.json-unit</groupId>
674             <artifactId>json-unit</artifactId>
675             <version>1.23.0</version>
676             <scope>test</scope>
677         </dependency>
678         <dependency>
679             <groupId>org.glassfish.jersey.media</groupId>
680             <artifactId>jersey-media-json-jackson</artifactId>
681             <version>${jersey.version}</version>
682                 <scope>test</scope>
683         </dependency>
684         <dependency>
685             <groupId>org.apache.commons</groupId>
686             <artifactId>commons-lang3</artifactId>
687             <version>3.6</version>
688         </dependency>
689         <dependency>
690             <groupId>org.apache.commons</groupId>
691             <artifactId>commons-text</artifactId>
692             <version>1.1</version>
693         </dependency>
694         <dependency>
695             <groupId>org.apache.commons</groupId>
696             <artifactId>commons-proxy</artifactId>
697             <version>1.0</version>
698         </dependency>
699         <dependency>
700             <groupId>org.hamcrest</groupId>
701             <artifactId>java-hamcrest</artifactId>
702             <version>2.0.0.0</version>
703             <scope>test</scope>
704         </dependency>
705         <dependency>
706             <groupId>org.togglz</groupId>
707             <artifactId>togglz-spring-core</artifactId>
708             <version>2.5.0.Final</version>
709         </dependency>
710         <dependency>
711             <groupId>com.h2database</groupId>
712             <artifactId>h2</artifactId>
713             <version>1.4.196</version>
714             <scope>test</scope>
715         </dependency>
716         <dependency>
717             <groupId>javax.xml.bind</groupId>
718             <artifactId>jaxb-api</artifactId>
719             <version>2.2.11</version>
720         </dependency>
721
722         <dependency>
723             <groupId>org.assertj</groupId>
724             <artifactId>assertj-core</artifactId>
725             <version>3.10.0</version>
726             <scope>compile</scope>
727         </dependency>
728         <dependency>
729             <groupId>com.google.guava</groupId>
730             <artifactId>guava</artifactId>
731             <version>23.0</version>
732         </dependency>
733     </dependencies>
734 </project>