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