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