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