Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <project |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 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> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 6 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 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> |
Ittay Stern | dd3ba98 | 2019-05-29 10:19:25 +0300 | [diff] [blame] | 12 | <version>5.0.0-SNAPSHOT</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 13 | <packaging>war</packaging> |
| 14 | <name>VID Common</name> |
| 15 | <description>VID Common code for opensource version</description> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 16 | |
Ittay Stern | 9f9e9b2 | 2019-02-28 12:09:45 +0200 | [diff] [blame] | 17 | <parent> |
| 18 | <groupId>org.onap.oparent</groupId> |
| 19 | <artifactId>oparent</artifactId> |
Jessica Wagantall | 97bec3c | 2019-05-11 01:01:20 +0300 | [diff] [blame] | 20 | <version>2.0.0</version> |
Ittay Stern | 9f9e9b2 | 2019-02-28 12:09:45 +0200 | [diff] [blame] | 21 | <relativePath/> |
| 22 | </parent> |
| 23 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 24 | <properties> |
| 25 | <encoding>UTF-8</encoding> |
| 26 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 27 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 28 | <epsdk.version>2.4.0</epsdk.version> |
Ittay Stern | 3bbd23f | 2019-03-26 11:25:37 +0200 | [diff] [blame] | 29 | <springframework.version>4.3.22.RELEASE</springframework.version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 30 | <hibernate.version>4.3.11.Final</hibernate.version> |
Ittay Stern | 9f9e9b2 | 2019-02-28 12:09:45 +0200 | [diff] [blame] | 31 | <jackson.version>2.9.8</jackson.version> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 32 | <jersey.version>2.27</jersey.version> |
| 33 | <surefire.version>2.22.1</surefire.version> |
Ittay Stern | eda8140 | 2019-02-26 06:32:43 +0200 | [diff] [blame] | 34 | <sonar.coverage.exclusions>**/webapp/**/*,**/*.js</sonar.coverage.exclusions> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 35 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 36 | <!-- Skip assembling the zip by default --> |
| 37 | <skipassembly>true</skipassembly> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 38 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
Ittay Stern | b93b96b | 2019-06-19 14:39:39 +0300 | [diff] [blame] | 39 | <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath> |
| 40 | <releaseNexusPath>content/repositories/releases/</releaseNexusPath> |
| 41 | <stagingNexusPath>content/repositories/staging/</stagingNexusPath> |
| 42 | <sitePath>content/sites/site/org/onap/vid/${project.version}</sitePath> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 43 | |
| 44 | <aspectj.version>1.8.9</aspectj.version> |
| 45 | <kotlin.version>1.3.11</kotlin.version> |
| 46 | <kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget> |
| 47 | |
golabek | ec4f954 | 2019-01-28 09:34:48 +0100 | [diff] [blame] | 48 | <eirslett.version>1.6</eirslett.version> |
| 49 | <node.version>v6.16.0</node.version> |
| 50 | |
Ittay Stern | d6544de | 2019-07-01 17:40:20 +0300 | [diff] [blame] | 51 | <!-- override using -Drelease_version=foo -Dpatch_version=bar --> |
| 52 | <release_version>${env.RELEASE_VERSION}</release_version> |
| 53 | <patch_version/> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 54 | </properties> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 55 | |
| 56 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 57 | <!-- this should be commented for local debugging --> |
| 58 | <!-- <deployenv>local</deployenv> --> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 59 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 60 | <repositories> |
| 61 | <repository> |
| 62 | <id>ecomp-releases</id> |
| 63 | <name>VID Release Repository</name> |
Ittay Stern | b93b96b | 2019-06-19 14:39:39 +0300 | [diff] [blame] | 64 | <url>${nexusproxy}/${releaseNexusPath}</url> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 65 | </repository> |
| 66 | <repository> |
| 67 | <id>ecomp-snapshots</id> |
| 68 | <name>VID Snapshot Repository</name> |
Ittay Stern | b93b96b | 2019-06-19 14:39:39 +0300 | [diff] [blame] | 69 | <url>${nexusproxy}/${snapshotNexusPath}</url> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 70 | </repository> |
| 71 | <repository> |
| 72 | <id>ecomp-staging</id> |
| 73 | <name>VID Staging Repository</name> |
Ittay Stern | b93b96b | 2019-06-19 14:39:39 +0300 | [diff] [blame] | 74 | <url>${nexusproxy}/${stagingNexusPath}</url> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 75 | </repository> |
| 76 | <repository> |
| 77 | <!-- Snapshots repository has ECOMP snapshot artifacts --> |
| 78 | <id>oss-snapshots</id> |
| 79 | <name>oss Central - Snapshots</name> |
| 80 | <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url> |
| 81 | </repository> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 82 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 83 | </repositories> |
| 84 | <distributionManagement> |
| 85 | <repository> |
| 86 | <id>ecomp-releases</id> |
| 87 | <name>VID Release Repository</name> |
| 88 | <url>${nexusproxy}/${releaseNexusPath}</url> |
| 89 | </repository> |
| 90 | <snapshotRepository> |
| 91 | <id>ecomp-snapshots</id> |
| 92 | <name>VID Snapshot Repository</name> |
| 93 | <url>${nexusproxy}/${snapshotNexusPath}</url> |
| 94 | </snapshotRepository> |
| 95 | <!-- added for javadoc --> |
| 96 | <site> |
| 97 | <id>ecomp-site</id> |
Ittay Stern | b93b96b | 2019-06-19 14:39:39 +0300 | [diff] [blame] | 98 | <url>dav:${nexusproxy}/${sitePath}</url> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 99 | </site> |
| 100 | </distributionManagement> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 101 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 102 | <build> |
| 103 | <finalName>vid-common</finalName> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 104 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 105 | <plugins> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 106 | |
| 107 | <plugin> |
| 108 | <artifactId>kotlin-maven-plugin</artifactId> |
| 109 | <groupId>org.jetbrains.kotlin</groupId> |
| 110 | <version>${kotlin.version}</version> |
| 111 | <executions> |
| 112 | <execution> |
| 113 | <id>compile</id> |
| 114 | <goals> <goal>compile</goal> </goals> |
| 115 | <configuration> |
| 116 | <sourceDirs> |
| 117 | <sourceDir>${project.basedir}/src/main/java</sourceDir> |
| 118 | </sourceDirs> |
| 119 | </configuration> |
| 120 | </execution> |
| 121 | <execution> |
| 122 | <id>test-compile</id> |
| 123 | <goals> <goal>test-compile</goal> </goals> |
| 124 | <configuration> |
| 125 | <sourceDirs> |
| 126 | <sourceDir>${project.basedir}/src/test/java</sourceDir> |
| 127 | </sourceDirs> |
| 128 | </configuration> |
| 129 | </execution> |
| 130 | </executions> |
| 131 | </plugin> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 132 | <plugin> |
| 133 | <groupId>org.jacoco</groupId> |
| 134 | <artifactId>jacoco-maven-plugin</artifactId> |
Ittay Stern | 67a23ab | 2019-02-25 19:21:32 +0200 | [diff] [blame] | 135 | <version>0.8.3</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 136 | <executions> |
| 137 | <execution> |
| 138 | <id>default-prepare-agent</id> |
| 139 | <goals> |
| 140 | <goal>prepare-agent</goal> |
| 141 | </goals> |
| 142 | </execution> |
| 143 | <execution> |
| 144 | <id>default-report</id> |
| 145 | <goals> |
| 146 | <goal>report</goal> |
| 147 | </goals> |
| 148 | </execution> |
| 149 | </executions> |
| 150 | </plugin> |
| 151 | <plugin> |
| 152 | <groupId>org.apache.tomcat.maven</groupId> |
| 153 | <artifactId>tomcat6-maven-plugin</artifactId> |
| 154 | <version>2.2</version> |
| 155 | </plugin> |
| 156 | <plugin> |
| 157 | <groupId>org.apache.tomcat.maven</groupId> |
| 158 | <artifactId>tomcat7-maven-plugin</artifactId> |
| 159 | <version>2.2</version> |
| 160 | </plugin> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 161 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 162 | <plugin> |
golabek | ec4f954 | 2019-01-28 09:34:48 +0100 | [diff] [blame] | 163 | <groupId>com.github.eirslett</groupId> |
| 164 | <artifactId>frontend-maven-plugin</artifactId> |
| 165 | <version>${eirslett.version}</version> |
| 166 | <executions> |
| 167 | <execution> |
| 168 | <id>install node and npm</id> |
| 169 | <goals> |
| 170 | <goal>install-node-and-npm</goal> |
| 171 | </goals> |
| 172 | <phase>generate-resources</phase> |
| 173 | <configuration> |
| 174 | <nodeVersion>${node.version}</nodeVersion> |
| 175 | </configuration> |
| 176 | </execution> |
| 177 | <execution> |
Ittay Stern | 1124e96 | 2019-06-18 07:50:50 +0300 | [diff] [blame] | 178 | <id>npm config list</id> |
| 179 | <configuration> |
| 180 | <arguments>config ls -l</arguments> |
| 181 | </configuration> |
| 182 | <goals> |
| 183 | <goal>npm</goal> |
| 184 | </goals> |
| 185 | <phase>generate-resources</phase> |
| 186 | </execution> |
| 187 | <execution> |
Ittay Stern | 779c51d | 2019-05-16 15:47:08 +0300 | [diff] [blame] | 188 | <id>npm install</id> |
| 189 | <configuration> |
| 190 | <arguments>install</arguments> |
| 191 | </configuration> |
| 192 | <goals> |
| 193 | <goal>npm</goal> |
| 194 | </goals> |
| 195 | <phase>generate-resources</phase> |
| 196 | </execution> |
| 197 | <execution> |
golabek | ec4f954 | 2019-01-28 09:34:48 +0100 | [diff] [blame] | 198 | <id>npm run-script build</id> |
| 199 | <configuration> |
| 200 | <arguments>run-script build</arguments> |
| 201 | </configuration> |
| 202 | <goals> |
| 203 | <goal>npm</goal> |
| 204 | </goals> |
| 205 | <phase>generate-resources</phase> |
| 206 | </execution> |
| 207 | </executions> |
| 208 | </plugin> |
| 209 | |
| 210 | <plugin> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 211 | <groupId>org.apache.maven.plugins</groupId> |
| 212 | <artifactId>maven-compiler-plugin</artifactId> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 213 | <version>3.5.1</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 214 | <configuration> |
| 215 | <source>1.8</source> |
| 216 | <target>1.8</target> |
| 217 | </configuration> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 218 | |
| 219 | <executions> |
| 220 | <!-- Replacing default-compile as it is treated specially by maven --> |
| 221 | <execution> |
| 222 | <id>default-compile</id> |
| 223 | <phase>none</phase> |
| 224 | </execution> |
| 225 | <!-- Replacing default-testCompile as it is treated specially by maven --> |
| 226 | <execution> |
| 227 | <id>default-testCompile</id> |
| 228 | <phase>none</phase> |
| 229 | </execution> |
| 230 | <execution> |
| 231 | <id>java-compile</id> |
| 232 | <phase>compile</phase> |
| 233 | <goals> <goal>compile</goal> </goals> |
| 234 | </execution> |
| 235 | <execution> |
| 236 | <id>java-test-compile</id> |
| 237 | <phase>test-compile</phase> |
| 238 | <goals> <goal>testCompile</goal> </goals> |
| 239 | </execution> |
| 240 | </executions> |
| 241 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 242 | </plugin> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 243 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 244 | <plugin> |
Ittay Stern | d6544de | 2019-07-01 17:40:20 +0300 | [diff] [blame] | 245 | <groupId>com.google.code.maven-replacer-plugin</groupId> |
| 246 | <artifactId>replacer</artifactId> |
| 247 | <version>1.5.3</version> |
| 248 | <executions> |
| 249 | <execution> |
| 250 | <phase>prepare-package</phase> |
| 251 | <goals> |
| 252 | <goal>replace</goal> |
| 253 | </goals> |
| 254 | </execution> |
| 255 | </executions> |
| 256 | <configuration> |
| 257 | <regex>false</regex> |
| 258 | <file>${project.basedir}/src/main/webapp/app/vid/scripts/constants/version.json</file> |
| 259 | <replacements> |
| 260 | <replacement> |
| 261 | <token>BUILD_NUMBER</token> |
| 262 | <value>${release_version}.${patch_version}.${env.BUILD_NUMBER}</value> |
| 263 | </replacement> |
| 264 | </replacements> |
| 265 | </configuration> |
| 266 | </plugin> |
| 267 | |
| 268 | <plugin> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 269 | <groupId>org.apache.maven.plugins</groupId> |
| 270 | <artifactId>maven-surefire-plugin</artifactId> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 271 | <version>${surefire.version}</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 272 | <configuration> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 273 | <includes> |
| 274 | <include>**/Test*.java</include> |
| 275 | <include>**/*Test.java</include> |
| 276 | <include>**/*TestCase.java</include> |
| 277 | </includes> |
| 278 | <excludes> |
| 279 | <exclude>**/selenium/*.java</exclude> |
| 280 | <exclude>**/integrationTest/*.java</exclude> |
| 281 | </excludes> |
| 282 | <additionalClasspathElements> |
| 283 | <additionalClasspathElement>${basedir}/war</additionalClasspathElement> |
| 284 | </additionalClasspathElements> |
| 285 | <systemPropertyVariables> |
| 286 | <container.classpath>classpath:</container.classpath> |
| 287 | </systemPropertyVariables> |
| 288 | <useSystemClassLoader>false</useSystemClassLoader> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 289 | <properties> |
| 290 | <property> |
| 291 | <!-- avoid running JUnit tests within surefire-testng provider --> |
| 292 | <name>junit</name> |
| 293 | <value>false</value> |
| 294 | </property> |
| 295 | </properties> |
| 296 | <threadCount>1</threadCount> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 297 | </configuration> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 298 | <dependencies> |
| 299 | <!-- Running TestNG and JUnit Tests --> |
| 300 | <!-- https://maven.apache.org/surefire/maven-surefire-plugin/examples/testng.html --> |
| 301 | <dependency> |
| 302 | <groupId>org.apache.maven.surefire</groupId> |
| 303 | <artifactId>surefire-junit47</artifactId> |
| 304 | <version>${surefire.version}</version> |
| 305 | </dependency> |
| 306 | <dependency> |
| 307 | <groupId>org.apache.maven.surefire</groupId> |
| 308 | <artifactId>surefire-testng</artifactId> |
| 309 | <version>${surefire.version}</version> |
| 310 | </dependency> |
| 311 | </dependencies> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 312 | </plugin> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 313 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 314 | <plugin> |
| 315 | <artifactId>maven-assembly-plugin</artifactId> |
| 316 | <configuration> |
| 317 | <skipAssembly>${skipassembly}</skipAssembly> |
| 318 | <descriptors> |
| 319 | <descriptor>${basedir}/distribution.xml</descriptor> |
| 320 | </descriptors> |
| 321 | </configuration> |
| 322 | <executions> |
| 323 | <execution> |
| 324 | <id>make-assembly</id> |
| 325 | <phase>package</phase> |
| 326 | <goals> |
| 327 | <goal>single</goal> |
| 328 | </goals> |
| 329 | </execution> |
| 330 | </executions> |
| 331 | </plugin> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 332 | |
| 333 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 334 | <plugin> |
| 335 | <groupId>org.apache.maven.plugins</groupId> |
| 336 | <artifactId>maven-war-plugin</artifactId> |
| 337 | <version>3.0.0</version> |
| 338 | <configuration> |
| 339 | <!-- Build a jar with all the Java classes --> |
| 340 | <attachClasses>true</attachClasses> |
| 341 | <!-- Do not put any jars in the war --> |
| 342 | <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes> |
| 343 | </configuration> |
| 344 | </plugin> |
| 345 | <plugin> |
| 346 | <groupId>org.apache.maven.plugins</groupId> |
| 347 | <artifactId>maven-site-plugin</artifactId> |
| 348 | <version>3.6</version> |
| 349 | <dependencies> |
| 350 | <dependency> |
| 351 | <groupId>org.apache.maven.wagon</groupId> |
| 352 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 353 | <version>2.10</version> |
| 354 | </dependency> |
| 355 | </dependencies> |
| 356 | </plugin> |
| 357 | <plugin> |
| 358 | <groupId>pl.project13.maven</groupId> |
| 359 | <artifactId>git-commit-id-plugin</artifactId> |
| 360 | <version>2.2.4</version> |
| 361 | <executions> |
| 362 | <execution> |
| 363 | <id>get-the-git-infos</id> |
| 364 | <goals> |
| 365 | <goal>revision</goal> |
| 366 | </goals> |
| 367 | </execution> |
| 368 | </executions> |
| 369 | <configuration> |
| 370 | <dotGitDirectory>${project.basedir}/.git</dotGitDirectory> |
| 371 | <dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat> |
| 372 | <dateFormatTimeZone>${user.timezone}</dateFormatTimeZone> |
| 373 | <generateGitPropertiesFile>true</generateGitPropertiesFile> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 374 | <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 375 | <includeOnlyProperties> |
| 376 | <includeOnlyProperty>^git.commit.id$</includeOnlyProperty> |
| 377 | <includeOnlyProperty>^git.commit.message.short$</includeOnlyProperty> |
| 378 | <includeOnlyProperty>^git.commit.time$</includeOnlyProperty> |
| 379 | </includeOnlyProperties> |
| 380 | </configuration> |
| 381 | </plugin> |
Ittay Stern | e0a1028 | 2019-02-27 17:32:09 +0200 | [diff] [blame] | 382 | |
| 383 | <plugin> |
| 384 | <!-- |
| 385 | Replace phase "none" with "process-sources" to enable. |
| 386 | Set organizationName as desired. |
| 387 | Then run `mvn license:check-file-header`, or even `mvn |
| 388 | license:update-file-header`. |
| 389 | --> |
| 390 | <groupId>org.codehaus.mojo</groupId> |
| 391 | <artifactId>license-maven-plugin</artifactId> |
| 392 | <version>1.17</version> |
| 393 | |
| 394 | <executions> |
| 395 | <execution> |
| 396 | <id>first</id> |
| 397 | <goals> |
| 398 | <goal>update-file-header</goal> |
| 399 | </goals> |
| 400 | <!-- replace phase "none" with "process-sources" to enable --> |
| 401 | <phase>none</phase> |
| 402 | </execution> |
| 403 | </executions> |
| 404 | |
| 405 | <configuration> |
| 406 | <canUpdateCopyright>false</canUpdateCopyright> |
| 407 | <canUpdateDescription>false</canUpdateDescription> |
| 408 | <licenseName>apache_v2</licenseName> |
| 409 | <processStartTag>============LICENSE_START=======================================================</processStartTag> |
| 410 | <processEndTag>============LICENSE_END=========================================================</processEndTag> |
| 411 | <sectionDelimiter>================================================================================</sectionDelimiter> |
| 412 | <projectName>VID</projectName> |
| 413 | <inceptionYear>2017</inceptionYear> |
| 414 | <organizationName>AT&T Intellectual Property. All rights reserved.</organizationName> |
| 415 | <canUpdateLicense>true</canUpdateLicense> |
| 416 | <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage> |
| 417 | <emptyLineAfterHeader>true</emptyLineAfterHeader> |
| 418 | <verbose>false</verbose> |
| 419 | |
| 420 | <includes> |
| 421 | <include>**/*.java</include> |
| 422 | <include>**/*.kt</include> |
| 423 | <include>**/*.jsp</include> |
| 424 | <include>**/*.xml</include> |
| 425 | <include>**/*.js</include> |
| 426 | <include>**/*.ts</include> |
| 427 | <include>**/*.html</include> |
| 428 | <include>**/*.css</include> |
| 429 | <include>**/*.sql</include> |
| 430 | </includes> |
| 431 | |
| 432 | <extraExtensions> |
| 433 | <sql>mysql</sql> |
| 434 | </extraExtensions> |
| 435 | |
| 436 | <roots> |
| 437 | <root>src/main</root> |
| 438 | <root>src/test</root> |
| 439 | </roots> |
| 440 | |
| 441 | <excludes> |
| 442 | <exclude>**/app/vid/external/**/*</exclude> |
| 443 | <exclude>**/main/webapp/WEB-INF/**/*</exclude> |
| 444 | <exclude>**/test/resources/WEB-INF/**/*</exclude> |
| 445 | <exclude>**/app/vid/scripts/angular-ui-tree.js</exclude> |
| 446 | </excludes> |
| 447 | |
| 448 | </configuration> |
| 449 | </plugin> |
| 450 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 451 | </plugins> |
| 452 | </build> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 453 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 454 | <reporting> |
| 455 | <plugins> |
| 456 | <plugin> |
| 457 | <groupId>org.apache.maven.plugins</groupId> |
| 458 | <artifactId>maven-javadoc-plugin</artifactId> |
| 459 | <version>2.10.4</version> |
| 460 | <configuration> |
| 461 | <failOnError>false</failOnError> |
| 462 | <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> |
| 463 | <docletArtifact> |
| 464 | <groupId>org.umlgraph</groupId> |
| 465 | <artifactId>umlgraph</artifactId> |
| 466 | <version>5.6</version> |
| 467 | </docletArtifact> |
| 468 | <additionalparam>-views</additionalparam> |
| 469 | <useStandardDocletOptions>true</useStandardDocletOptions> |
| 470 | </configuration> |
| 471 | </plugin> |
| 472 | </plugins> |
| 473 | </reporting> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 474 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 475 | <dependencies> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 476 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 477 | <dependency> |
| 478 | <groupId>com.opencsv</groupId> |
| 479 | <artifactId>opencsv</artifactId> |
| 480 | <version>4.1</version> |
| 481 | </dependency> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 482 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 483 | <!-- HTTP client --> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 484 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 485 | <dependency> |
| 486 | <groupId>io.joshworks.unirest</groupId> |
| 487 | <artifactId>unirest-java</artifactId> |
| 488 | <version>0.2.1</version> |
| 489 | </dependency> |
| 490 | <dependency> |
| 491 | <groupId>org.apache.httpcomponents</groupId> |
| 492 | <artifactId>httpclient</artifactId> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 493 | </dependency> |
| 494 | <dependency> |
| 495 | <groupId>org.apache.httpcomponents</groupId> |
| 496 | <artifactId>httpasyncclient</artifactId> |
| 497 | <version>4.0.2</version> |
| 498 | </dependency> |
| 499 | <dependency> |
| 500 | <groupId>org.apache.httpcomponents</groupId> |
| 501 | <artifactId>httpmime</artifactId> |
Ittay Stern | 9f9e9b2 | 2019-02-28 12:09:45 +0200 | [diff] [blame] | 502 | <version>4.5.7</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 503 | </dependency> |
| 504 | <dependency> |
| 505 | <groupId>com.xebialabs.restito</groupId> |
| 506 | <artifactId>restito</artifactId> |
| 507 | <version>0.9.3</version> |
| 508 | <scope>test</scope> |
| 509 | </dependency> |
kurczews | f477d1d | 2019-03-20 09:52:12 +0100 | [diff] [blame] | 510 | <dependency> |
| 511 | <groupId>org.jeasy</groupId> |
| 512 | <artifactId>easy-random-core</artifactId> |
| 513 | <version>4.0.0.RC1</version> |
| 514 | <scope>test</scope> |
| 515 | </dependency> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 516 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 517 | <!-- Helpers --> |
| 518 | <dependency> |
| 519 | <groupId>io.vavr</groupId> |
| 520 | <artifactId>vavr</artifactId> |
| 521 | <version>0.9.2</version> |
| 522 | </dependency> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 523 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 524 | <!-- SDK overlay war --> |
| 525 | <dependency> |
| 526 | <groupId>org.onap.portal.sdk</groupId> |
| 527 | <artifactId>epsdk-app-overlay</artifactId> |
| 528 | <version>${epsdk.version}</version> |
| 529 | <type>war</type> |
| 530 | </dependency> |
| 531 | <dependency> |
| 532 | <groupId>org.onap.portal.sdk</groupId> |
| 533 | <artifactId>epsdk-app-common</artifactId> |
| 534 | <version>${epsdk.version}</version> |
| 535 | <type>jar</type> |
| 536 | </dependency> |
| 537 | |
| 538 | <dependency> |
| 539 | <groupId>org.onap.portal.sdk</groupId> |
| 540 | <artifactId>epsdk-core</artifactId> |
| 541 | <version>${epsdk.version}</version> |
| 542 | </dependency> |
| 543 | <dependency> |
| 544 | <groupId>org.onap.portal.sdk</groupId> |
| 545 | <artifactId>epsdk-analytics</artifactId> |
| 546 | <version>${epsdk.version}</version> |
| 547 | <exclusions> |
| 548 | <exclusion> |
| 549 | <groupId>com.lowagie</groupId> |
| 550 | <artifactId>itext</artifactId> |
| 551 | </exclusion> |
| 552 | </exclusions> |
| 553 | </dependency> |
| 554 | <dependency> |
| 555 | <groupId>org.onap.portal.sdk</groupId> |
| 556 | <artifactId>epsdk-workflow</artifactId> |
| 557 | <version>${epsdk.version}</version> |
| 558 | </dependency> |
| 559 | <dependency> |
| 560 | <groupId>com.att.eelf</groupId> |
| 561 | <artifactId>eelf-core</artifactId> |
| 562 | <version>1.0.0</version> |
| 563 | <exclusions> |
| 564 | <exclusion> |
| 565 | <artifactId>powermock-api-mockito</artifactId> |
| 566 | <groupId>org.powermock</groupId> |
| 567 | </exclusion> |
| 568 | </exclusions> |
| 569 | </dependency> |
| 570 | <dependency> |
| 571 | <groupId>ch.qos.logback</groupId> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 572 | <artifactId>logback-classic</artifactId> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 573 | </dependency> |
| 574 | |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 575 | <dependency> |
| 576 | <groupId>org.jetbrains.kotlin</groupId> |
| 577 | <artifactId>kotlin-stdlib-jdk8</artifactId> |
| 578 | <version>${kotlin.version}</version> |
| 579 | </dependency> |
| 580 | |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 581 | <!-- Mapper --> |
| 582 | <dependency> |
| 583 | <groupId>com.fasterxml.jackson.core</groupId> |
| 584 | <artifactId>jackson-annotations</artifactId> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 585 | <version>${jackson.version}</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 586 | </dependency> |
| 587 | <dependency> |
| 588 | <groupId>com.fasterxml.jackson.core</groupId> |
| 589 | <artifactId>jackson-core</artifactId> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 590 | <version>${jackson.version}</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 591 | </dependency> |
| 592 | <dependency> |
| 593 | <groupId>com.fasterxml.jackson.core</groupId> |
| 594 | <artifactId>jackson-databind</artifactId> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 595 | <version>${jackson.version}</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 596 | </dependency> |
| 597 | <dependency> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 598 | <groupId>com.fasterxml.jackson.module</groupId> |
| 599 | <artifactId>jackson-module-kotlin</artifactId> |
| 600 | <version>${jackson.version}</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 601 | </dependency> |
Ittay Stern | 2687d31 | 2019-02-21 17:26:33 +0200 | [diff] [blame] | 602 | <!-- c3p0 is to override epsdk-app-common's c3p0 0.9.5.2 vulnerability --> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 603 | <dependency> |
| 604 | <groupId>com.mchange</groupId> |
| 605 | <artifactId>c3p0</artifactId> |
golabek | 22b9613 | 2019-04-23 11:11:12 +0200 | [diff] [blame] | 606 | <version>0.9.5.4</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 607 | </dependency> |
| 608 | <dependency> |
| 609 | <groupId>io.searchbox</groupId> |
| 610 | <artifactId>jest</artifactId> |
| 611 | <version>2.0.0</version> |
| 612 | <exclusions> |
| 613 | <exclusion> |
| 614 | <groupId>commons-logging</groupId> |
| 615 | <artifactId>commons-logging</artifactId> |
| 616 | </exclusion> |
| 617 | </exclusions> |
| 618 | </dependency> |
| 619 | <dependency> |
| 620 | <groupId>javax.servlet</groupId> |
| 621 | <artifactId>javax.servlet-api</artifactId> |
| 622 | <version>3.1.0</version> |
| 623 | <scope>provided</scope> |
| 624 | </dependency> |
| 625 | <dependency> |
| 626 | <groupId>junit</groupId> |
| 627 | <artifactId>junit</artifactId> |
| 628 | <version>4.12</version> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 629 | <scope>test</scope> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 630 | </dependency> |
| 631 | <dependency> |
| 632 | <groupId>commons-io</groupId> |
| 633 | <artifactId>commons-io</artifactId> |
| 634 | <version>2.4</version> |
| 635 | <!--<scope>test</scope>--> |
| 636 | </dependency> |
| 637 | <dependency> |
| 638 | <groupId>com.google.code.bean-matchers</groupId> |
| 639 | <artifactId>bean-matchers</artifactId> |
| 640 | <version>0.11</version> |
| 641 | <scope>test</scope> |
| 642 | </dependency> |
| 643 | <dependency> |
| 644 | <groupId>org.json</groupId> |
| 645 | <artifactId>json</artifactId> |
| 646 | <version>20160212</version> |
| 647 | </dependency> |
| 648 | <dependency> |
| 649 | <groupId>org.quartz-scheduler</groupId> |
| 650 | <artifactId>quartz</artifactId> |
| 651 | <version>2.2.1</version> |
| 652 | <exclusions> |
| 653 | <!-- exclude 0.9.1.1 to avoid dupe of com.mchange:c3p0:0.9.2.1 --> |
| 654 | <exclusion> |
| 655 | <groupId>c3p0</groupId> |
| 656 | <artifactId>c3p0</artifactId> |
| 657 | </exclusion> |
| 658 | </exclusions> |
| 659 | </dependency> |
| 660 | <!-- bridge to implement commons-logging using slf4j --> |
| 661 | <dependency> |
| 662 | <groupId>org.slf4j</groupId> |
| 663 | <artifactId>jcl-over-slf4j</artifactId> |
| 664 | <version>1.7.12</version> |
| 665 | </dependency> |
Ittay Stern | 3bbd23f | 2019-03-26 11:25:37 +0200 | [diff] [blame] | 666 | |
| 667 | <!-- springframework to override epsdk-app-common's and epsdk-core's versions --> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 668 | <dependency> |
| 669 | <groupId>org.springframework</groupId> |
| 670 | <artifactId>spring-core</artifactId> |
| 671 | <version>${springframework.version}</version> |
| 672 | <exclusions> |
| 673 | <exclusion> |
| 674 | <groupId>commons-logging</groupId> |
| 675 | <artifactId>commons-logging</artifactId> |
| 676 | </exclusion> |
| 677 | </exclusions> |
| 678 | </dependency> |
| 679 | <dependency> |
| 680 | <groupId>org.springframework</groupId> |
| 681 | <artifactId>spring-test</artifactId> |
| 682 | <version>${springframework.version}</version> |
| 683 | </dependency> |
| 684 | <dependency> |
| 685 | <groupId>org.springframework</groupId> |
| 686 | <artifactId>spring-tx</artifactId> |
| 687 | <version>${springframework.version}</version> |
| 688 | </dependency> |
| 689 | <dependency> |
| 690 | <groupId>org.springframework</groupId> |
| 691 | <artifactId>spring-web</artifactId> |
| 692 | <version>${springframework.version}</version> |
| 693 | </dependency> |
| 694 | <dependency> |
| 695 | <groupId>org.springframework</groupId> |
| 696 | <artifactId>spring-webmvc</artifactId> |
| 697 | <version>${springframework.version}</version> |
| 698 | </dependency> |
| 699 | <dependency> |
Ittay Stern | 3bbd23f | 2019-03-26 11:25:37 +0200 | [diff] [blame] | 700 | <groupId>org.springframework</groupId> |
| 701 | <artifactId>spring-context-support</artifactId> |
| 702 | <version>${springframework.version}</version> |
| 703 | </dependency> |
| 704 | <dependency> |
| 705 | <groupId>org.springframework</groupId> |
| 706 | <artifactId>spring-orm</artifactId> |
| 707 | <version>${springframework.version}</version> |
| 708 | </dependency> |
| 709 | <dependency> |
| 710 | <groupId>org.springframework</groupId> |
| 711 | <artifactId>spring-aop</artifactId> |
| 712 | <version>${springframework.version}</version> |
| 713 | </dependency> |
| 714 | |
| 715 | <dependency> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 716 | <groupId>org.glassfish.jersey.core</groupId> |
| 717 | <artifactId>jersey-client</artifactId> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 718 | <version>${jersey.version}</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 719 | </dependency> |
| 720 | <dependency> |
| 721 | <groupId>org.glassfish.jersey.connectors</groupId> |
| 722 | <artifactId>jersey-jetty-connector</artifactId> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 723 | <version>${jersey.version}</version> |
| 724 | </dependency> |
| 725 | <!--https://stackoverflow.com/questions/44088493/jersey-stopped-working-with-injectionmanagerfactory-not-found--> |
| 726 | <dependency> |
| 727 | <groupId>org.glassfish.jersey.inject</groupId> |
| 728 | <artifactId>jersey-hk2</artifactId> |
| 729 | <version>${jersey.version}</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 730 | </dependency> |
| 731 | <dependency> |
| 732 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 733 | <artifactId>jackson-jaxrs-json-provider</artifactId> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 734 | <version>${jackson.version}</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 735 | </dependency> |
| 736 | <dependency> |
| 737 | <groupId>commons-beanutils</groupId> |
| 738 | <artifactId>commons-beanutils</artifactId> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 739 | </dependency> |
| 740 | <dependency> |
| 741 | <groupId>com.googlecode.json-simple</groupId> |
| 742 | <artifactId>json-simple</artifactId> |
| 743 | <version>1.1.1</version> |
| 744 | </dependency> |
| 745 | <dependency> |
| 746 | <groupId>org.seleniumhq.selenium</groupId> |
| 747 | <artifactId>selenium-java</artifactId> |
| 748 | <version>2.53.1</version> |
| 749 | <scope>test</scope> |
| 750 | </dependency> |
| 751 | <dependency> |
| 752 | <groupId>org.seleniumhq.selenium</groupId> |
| 753 | <artifactId>selenium-api</artifactId> |
| 754 | <version>2.53.1</version> |
| 755 | <scope>test</scope> |
| 756 | </dependency> |
| 757 | <dependency> |
| 758 | <groupId>org.testng</groupId> |
| 759 | <artifactId>testng</artifactId> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 760 | <version>6.14.3</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 761 | <scope>test</scope> |
| 762 | </dependency> |
| 763 | <dependency> |
| 764 | <groupId>org.mockito</groupId> |
| 765 | <artifactId>mockito-core</artifactId> |
| 766 | <version>2.23.0</version> |
| 767 | <scope>test</scope> |
| 768 | </dependency> |
| 769 | <dependency> |
| 770 | <groupId>org.seleniumhq.selenium</groupId> |
| 771 | <artifactId>selenium-firefox-driver</artifactId> |
| 772 | <version>2.53.1</version> |
| 773 | </dependency> |
| 774 | <dependency> |
| 775 | <groupId>xml-apis</groupId> |
| 776 | <artifactId>xml-apis</artifactId> |
| 777 | <version>1.4.01</version> |
| 778 | </dependency> |
| 779 | <dependency> |
| 780 | <groupId>org.yaml</groupId> |
| 781 | <artifactId>snakeyaml</artifactId> |
| 782 | <version>1.16</version> |
| 783 | </dependency> |
| 784 | <dependency> |
| 785 | <groupId>org.skyscreamer</groupId> |
| 786 | <artifactId>jsonassert</artifactId> |
| 787 | <version>1.5.0</version> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 788 | <scope>test</scope> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 789 | </dependency> |
| 790 | <dependency> |
| 791 | <groupId>org.onap.sdc.sdc-tosca</groupId> |
| 792 | <artifactId>sdc-tosca</artifactId> |
Ittay Stern | 2bc8ebd | 2019-05-21 19:38:54 +0300 | [diff] [blame] | 793 | <version>1.5.1</version> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 794 | <scope>compile</scope> |
| 795 | </dependency> |
| 796 | <dependency> |
| 797 | <groupId>net.javacrumbs.json-unit</groupId> |
| 798 | <artifactId>json-unit</artifactId> |
| 799 | <version>1.23.0</version> |
| 800 | <scope>test</scope> |
| 801 | </dependency> |
| 802 | <dependency> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 803 | <groupId>org.glassfish.jersey.media</groupId> |
| 804 | <artifactId>jersey-media-json-jackson</artifactId> |
| 805 | <version>${jersey.version}</version> |
| 806 | <scope>test</scope> |
| 807 | </dependency> |
| 808 | <dependency> |
| 809 | <groupId>org.apache.commons</groupId> |
| 810 | <artifactId>commons-lang3</artifactId> |
| 811 | <version>3.6</version> |
| 812 | </dependency> |
| 813 | <dependency> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 814 | <groupId>org.apache.commons</groupId> |
| 815 | <artifactId>commons-text</artifactId> |
| 816 | <version>1.1</version> |
| 817 | </dependency> |
| 818 | <dependency> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 819 | <groupId>org.apache.commons</groupId> |
| 820 | <artifactId>commons-proxy</artifactId> |
| 821 | <version>1.0</version> |
| 822 | </dependency> |
| 823 | <dependency> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 824 | <groupId>org.hamcrest</groupId> |
| 825 | <artifactId>java-hamcrest</artifactId> |
| 826 | <version>2.0.0.0</version> |
| 827 | <scope>test</scope> |
| 828 | </dependency> |
| 829 | <dependency> |
| 830 | <groupId>org.togglz</groupId> |
| 831 | <artifactId>togglz-spring-core</artifactId> |
| 832 | <version>2.5.0.Final</version> |
| 833 | </dependency> |
| 834 | <dependency> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 835 | <groupId>com.h2database</groupId> |
| 836 | <artifactId>h2</artifactId> |
| 837 | <version>1.4.196</version> |
| 838 | <scope>test</scope> |
| 839 | </dependency> |
| 840 | <dependency> |
| 841 | <groupId>javax.xml.bind</groupId> |
| 842 | <artifactId>jaxb-api</artifactId> |
| 843 | <version>2.2.11</version> |
| 844 | </dependency> |
| 845 | |
| 846 | <dependency> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 847 | <groupId>org.assertj</groupId> |
| 848 | <artifactId>assertj-core</artifactId> |
| 849 | <version>3.10.0</version> |
kurczews | b1d7393 | 2019-05-17 09:10:27 +0200 | [diff] [blame] | 850 | <scope>test</scope> |
biniek | 6f2b208 | 2018-12-17 11:18:05 +0100 | [diff] [blame] | 851 | </dependency> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 852 | <dependency> |
| 853 | <groupId>com.google.guava</groupId> |
| 854 | <artifactId>guava</artifactId> |
Ittay Stern | 6ad41e3 | 2018-12-31 17:21:27 +0200 | [diff] [blame] | 855 | </dependency> |
Wojciech Sliwka | 86683c5 | 2019-04-09 14:57:02 +0200 | [diff] [blame] | 856 | <dependency> |
| 857 | <groupId>io.springfox</groupId> |
| 858 | <artifactId>springfox-swagger2</artifactId> |
| 859 | <version>2.9.2</version> |
| 860 | </dependency> |
Stern, Ittay (is9613) | f22f824 | 2018-11-27 13:22:35 +0200 | [diff] [blame] | 861 | </dependencies> |
| 862 | </project> |