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