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