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