blob: aa973b05b5041b43170552a848a1ca03a0300204 [file] [log] [blame]
jimmydot3982f4f2017-05-07 14:58:24 -04001<?xml version="1.0"?>
2<project
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>
6
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. -->
Ofir Sonsino1cfb0872018-01-31 17:19:00 +020010 <groupId>org.onap.vid</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -040011 <artifactId>vid-app-common</artifactId>
Ofir Sonsinoe895f012017-12-04 13:59:17 +020012 <version>1.1.1-SNAPSHOT</version>
jimmydot3982f4f2017-05-07 14:58:24 -040013 <packaging>war</packaging>
14 <name>VID Common</name>
15 <description>VID Common code for opensource version</description>
16
17 <properties>
jimmydotf88fada2017-05-07 19:42:59 -040018 <encoding>UTF-8</encoding>
19 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Ofir Sonsino6d223e92017-11-08 19:34:25 +020021 <epsdk.version>1.3.2</epsdk.version>
jimmydotf88fada2017-05-07 19:42:59 -040022 <springframework.version>4.2.0.RELEASE</springframework.version>
23 <hibernate.version>4.3.11.Final</hibernate.version>
24 <!-- Skip assembling the zip by default -->
25 <skipassembly>true</skipassembly>
26 <!-- Tests usually require some setup that maven cannot do, so skip. -->
Ofir Sonsino3274b392017-10-08 15:04:04 +030027 <skiptests>false</skiptests>
jimmydotf88fada2017-05-07 19:42:59 -040028 <nexusproxy>https://nexus.onap.org</nexusproxy>
29 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
30 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
31 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +020032 <sitePath>/content/sites/site/org/onap/vid/${project.version}</sitePath>
jimmydot3982f4f2017-05-07 14:58:24 -040033 </properties>
jimmydotf88fada2017-05-07 19:42:59 -040034
35
jimmydot3982f4f2017-05-07 14:58:24 -040036 <!-- this should be commented for local debugging -->
37 <!-- <deployenv>local</deployenv> -->
jimmydotf88fada2017-05-07 19:42:59 -040038
jimmydot3982f4f2017-05-07 14:58:24 -040039 <repositories>
jimmydotf88fada2017-05-07 19:42:59 -040040 <repository>
41 <id>ecomp-releases</id>
42 <name>VID Release Repository</name>
43 <url>${nexusproxy}${releaseNexusPath}</url>
44 </repository>
45 <repository>
46 <id>ecomp-snapshots</id>
47 <name>VID Snapshot Repository</name>
48 <url>${nexusproxy}${snapshotNexusPath}</url>
49 </repository>
50 <repository>
51 <id>ecomp-staging</id>
52 <name>VID Staging Repository</name>
53 <url>${nexusproxy}${stagingNexusPath}</url>
54 </repository>
55 <repository>
56 <!-- Snapshots repository has ECOMP snapshot artifacts -->
57 <id>oss-snapshots</id>
58 <name>oss Central - Snapshots</name>
59 <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url>
60 </repository>
61
jimmydot3982f4f2017-05-07 14:58:24 -040062 </repositories>
jimmydotf88fada2017-05-07 19:42:59 -040063 <distributionManagement>
64 <repository>
65 <id>ecomp-releases</id>
66 <name>VID Release Repository</name>
67 <url>${nexusproxy}/${releaseNexusPath}</url>
68 </repository>
69 <snapshotRepository>
70 <id>ecomp-snapshots</id>
71 <name>VID Snapshot Repository</name>
72 <url>${nexusproxy}/${snapshotNexusPath}</url>
73 </snapshotRepository>
74 <!-- added for javadoc -->
75 <site>
76 <id>ecomp-site</id>
77 <url>dav:${nexusproxy}${sitePath}</url>
78 </site>
79 </distributionManagement>
80
jimmydot3982f4f2017-05-07 14:58:24 -040081 <build>
82 <finalName>vid-common</finalName>
jimmydotf88fada2017-05-07 19:42:59 -040083
jimmydot3982f4f2017-05-07 14:58:24 -040084 <plugins>
85 <plugin>
jimmydotf88fada2017-05-07 19:42:59 -040086 <groupId>org.sonatype.plugins</groupId>
87 <artifactId>nexus-staging-maven-plugin</artifactId>
88 <version>1.6.7</version>
89 <extensions>true</extensions>
90 <configuration>
91 <nexusUrl>${nexusproxy}</nexusUrl>
92 <stagingProfileId>176c31dfe190a</stagingProfileId>
93 <serverId>ecomp-staging</serverId>
94 </configuration>
95 </plugin>
96 <plugin>
Ofir Sonsino3274b392017-10-08 15:04:04 +030097 <groupId>org.jacoco</groupId>
98 <artifactId>jacoco-maven-plugin</artifactId>
99 <version>0.7.9</version>
jimmydot3982f4f2017-05-07 14:58:24 -0400100 <executions>
101 <execution>
Ofir Sonsino3274b392017-10-08 15:04:04 +0300102 <id>default-prepare-agent</id>
jimmydot3982f4f2017-05-07 14:58:24 -0400103 <goals>
Ofir Sonsino3274b392017-10-08 15:04:04 +0300104 <goal>prepare-agent</goal>
105 </goals>
106 </execution>
107 <execution>
108 <id>default-report</id>
109 <goals>
110 <goal>report</goal>
jimmydot3982f4f2017-05-07 14:58:24 -0400111 </goals>
112 </execution>
113 </executions>
114 </plugin>
115 <plugin>
116 <groupId>org.apache.tomcat.maven</groupId>
117 <artifactId>tomcat6-maven-plugin</artifactId>
118 <version>2.2</version>
119 </plugin>
120 <plugin>
121 <groupId>org.apache.tomcat.maven</groupId>
122 <artifactId>tomcat7-maven-plugin</artifactId>
123 <version>2.2</version>
124 </plugin>
125
126 <!-- Generate POJOs from MSO json schema -->
127 <plugin>
128 <groupId>org.jsonschema2pojo</groupId>
129 <artifactId>jsonschema2pojo-maven-plugin</artifactId>
130 <version>0.4.23</version>
131 <configuration>
132 <sourceDirectory>${basedir}/src/main/resources/json/mso</sourceDirectory>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +0200133 <targetPackage>org.onap.vid.domain.mso</targetPackage>
jimmydot3982f4f2017-05-07 14:58:24 -0400134 <outputDirectory>${project.build.directory}/generated-sources</outputDirectory>
135 </configuration>
136 <executions>
137 <execution>
138 <goals>
139 <goal>generate</goal>
140 </goals>
141 </execution>
142 </executions>
143 </plugin>
144
145 <plugin>
146 <groupId>org.apache.maven.plugins</groupId>
147 <artifactId>maven-compiler-plugin</artifactId>
148 <version>3.1</version>
149 <configuration>
150 <source>1.8</source>
151 <target>1.8</target>
152 </configuration>
153 </plugin>
154
155 <plugin>
156 <groupId>org.apache.maven.plugins</groupId>
157 <artifactId>maven-surefire-plugin</artifactId>
158 <version>2.19.1</version>
159 <configuration>
160 <skipTests>${skiptests}</skipTests>
161 <includes>
162 <include>**/Test*.java</include>
163 <include>**/*Test.java</include>
164 <include>**/*TestCase.java</include>
165 </includes>
166 <excludes>
167 <exclude>**/selenium/*.java</exclude>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +0200168 <exclude>**/integrationTest/*.java</exclude>
jimmydot3982f4f2017-05-07 14:58:24 -0400169 </excludes>
170 <additionalClasspathElements>
171 <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
172 </additionalClasspathElements>
173 <systemPropertyVariables>
174 <container.classpath>classpath:</container.classpath>
175 </systemPropertyVariables>
176 </configuration>
177 </plugin>
178
179 <plugin>
180 <artifactId>maven-assembly-plugin</artifactId>
181 <configuration>
182 <skipAssembly>${skipassembly}</skipAssembly>
183 <descriptors>
184 <descriptor>${basedir}/distribution.xml</descriptor>
185 </descriptors>
186 </configuration>
187 <executions>
188 <execution>
189 <id>make-assembly</id>
190 <phase>package</phase>
191 <goals>
192 <goal>single</goal>
193 </goals>
194 </execution>
195 </executions>
196 </plugin>
197
198
199 <plugin>
200 <groupId>org.apache.maven.plugins</groupId>
201 <artifactId>maven-war-plugin</artifactId>
202 <version>3.0.0</version>
203 <configuration>
204 <!-- Build a jar with all the Java classes -->
205 <attachClasses>true</attachClasses>
206 <!-- Do not put any jars in the war -->
207 <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
208 </configuration>
209 </plugin>
jimmydot15eae842017-05-09 11:03:39 -0400210 <plugin>
211 <groupId>org.apache.maven.plugins</groupId>
212 <artifactId>maven-site-plugin</artifactId>
213 <version>3.6</version>
214 <dependencies>
215 <dependency>
216 <groupId>org.apache.maven.wagon</groupId>
217 <artifactId>wagon-webdav-jackrabbit</artifactId>
218 <version>2.10</version>
219 </dependency>
220 </dependencies>
221 </plugin>
jimmydot3982f4f2017-05-07 14:58:24 -0400222 </plugins>
jimmydot3982f4f2017-05-07 14:58:24 -0400223 </build>
224
jimmydot15eae842017-05-09 11:03:39 -0400225 <reporting>
226 <plugins>
227 <plugin>
228 <groupId>org.apache.maven.plugins</groupId>
229 <artifactId>maven-javadoc-plugin</artifactId>
230 <version>2.10.4</version>
231 <configuration>
232 <failOnError>false</failOnError>
233 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
234 <docletArtifact>
235 <groupId>org.umlgraph</groupId>
236 <artifactId>umlgraph</artifactId>
237 <version>5.6</version>
238 </docletArtifact>
239 <additionalparam>-views</additionalparam>
240 <useStandardDocletOptions>true</useStandardDocletOptions>
241 </configuration>
242 </plugin>
243 </plugins>
244 </reporting>
245
jimmydot3982f4f2017-05-07 14:58:24 -0400246 <dependencies>
247 <!-- SDK overlay war -->
248
249 <dependency>
Ofir Sonsino564a0d72017-10-22 17:03:35 +0300250 <groupId>org.onap.portal.sdk</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -0400251 <artifactId>epsdk-app-overlay</artifactId>
252 <version>${epsdk.version}</version>
253 <type>war</type>
254 </dependency>
255 <dependency>
Ofir Sonsino564a0d72017-10-22 17:03:35 +0300256 <groupId>org.onap.portal.sdk</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -0400257 <artifactId>epsdk-app-common</artifactId>
258 <version>${epsdk.version}</version>
259 <type>jar</type>
260 </dependency>
jimmydotf88fada2017-05-07 19:42:59 -0400261
jimmydot3982f4f2017-05-07 14:58:24 -0400262 <dependency>
Ofir Sonsino564a0d72017-10-22 17:03:35 +0300263 <groupId>org.onap.portal.sdk</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -0400264 <artifactId>epsdk-core</artifactId>
265 <version>${epsdk.version}</version>
266 </dependency>
267 <dependency>
Ofir Sonsino564a0d72017-10-22 17:03:35 +0300268 <groupId>org.onap.portal.sdk</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -0400269 <artifactId>epsdk-analytics</artifactId>
270 <version>${epsdk.version}</version>
271 </dependency>
272 <dependency>
Ofir Sonsino564a0d72017-10-22 17:03:35 +0300273 <groupId>org.onap.portal.sdk</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -0400274 <artifactId>epsdk-workflow</artifactId>
275 <version>${epsdk.version}</version>
276 </dependency>
277 <dependency>
278 <groupId>com.att.eelf</groupId>
279 <artifactId>eelf-core</artifactId>
280 <version>1.0.0</version>
281 </dependency>
282
283 <!-- Mapper -->
284 <dependency>
285 <groupId>com.fasterxml.jackson.core</groupId>
286 <artifactId>jackson-annotations</artifactId>
287 <version>2.6.3</version>
288 </dependency>
289 <dependency>
290 <groupId>com.fasterxml.jackson.core</groupId>
291 <artifactId>jackson-core</artifactId>
292 <version>2.6.3</version>
293 </dependency>
294 <dependency>
295 <groupId>com.fasterxml.jackson.core</groupId>
296 <artifactId>jackson-databind</artifactId>
297 <version>2.6.3</version>
298 </dependency>
299 <dependency>
300 <groupId>org.codehaus.jackson</groupId>
301 <artifactId>jackson-mapper-asl</artifactId>
302 <version>1.9.13</version>
303 </dependency>
304 <dependency>
305 <groupId>com.mchange</groupId>
306 <artifactId>c3p0</artifactId>
307 <version>0.9.5.2</version>
308 </dependency>
309 <dependency>
310 <groupId>io.searchbox</groupId>
311 <artifactId>jest</artifactId>
312 <version>2.0.0</version>
313 <exclusions>
314 <exclusion>
315 <groupId>commons-logging</groupId>
316 <artifactId>commons-logging</artifactId>
317 </exclusion>
318 </exclusions>
319 </dependency>
320 <dependency>
321 <groupId>javax.servlet</groupId>
322 <artifactId>javax.servlet-api</artifactId>
323 <version>3.1.0</version>
324 <scope>provided</scope>
325 </dependency>
326 <dependency>
327 <groupId>junit</groupId>
328 <artifactId>junit</artifactId>
329 <version>4.12</version>
330 </dependency>
331 <dependency>
332 <groupId>org.json</groupId>
333 <artifactId>json</artifactId>
334 <version>20160212</version>
335 </dependency>
336 <dependency>
337 <groupId>org.quartz-scheduler</groupId>
338 <artifactId>quartz</artifactId>
339 <version>2.2.1</version>
340 <exclusions>
341 <!-- exclude 0.9.1.1 to avoid dupe of com.mchange:c3p0:0.9.2.1 -->
342 <exclusion>
343 <groupId>c3p0</groupId>
344 <artifactId>c3p0</artifactId>
345 </exclusion>
346 </exclusions>
347 </dependency>
348 <!-- bridge to implement commons-logging using slf4j -->
349 <dependency>
350 <groupId>org.slf4j</groupId>
351 <artifactId>jcl-over-slf4j</artifactId>
352 <version>1.7.12</version>
353 </dependency>
354 <dependency>
355 <groupId>org.springframework</groupId>
356 <artifactId>spring-context-support</artifactId>
357 <version>${springframework.version}</version>
358 </dependency>
359 <dependency>
360 <groupId>org.springframework</groupId>
361 <artifactId>spring-core</artifactId>
362 <version>${springframework.version}</version>
363 <exclusions>
364 <exclusion>
365 <groupId>commons-logging</groupId>
366 <artifactId>commons-logging</artifactId>
367 </exclusion>
368 </exclusions>
369 </dependency>
370 <dependency>
371 <groupId>org.springframework</groupId>
372 <artifactId>spring-test</artifactId>
373 <version>${springframework.version}</version>
374 </dependency>
375 <dependency>
376 <groupId>org.springframework</groupId>
377 <artifactId>spring-tx</artifactId>
378 <version>${springframework.version}</version>
379 </dependency>
380 <dependency>
381 <groupId>org.springframework</groupId>
382 <artifactId>spring-web</artifactId>
383 <version>${springframework.version}</version>
384 </dependency>
385 <dependency>
386 <groupId>org.springframework</groupId>
387 <artifactId>spring-webmvc</artifactId>
388 <version>${springframework.version}</version>
389 </dependency>
390 <dependency>
391 <groupId>org.glassfish.jersey.core</groupId>
392 <artifactId>jersey-client</artifactId>
393 <version>2.23.1</version>
394 </dependency>
395 <dependency>
396 <groupId>org.glassfish.jersey.connectors</groupId>
397 <artifactId>jersey-jetty-connector</artifactId>
398 <version>2.23.1</version>
399 </dependency>
400 <dependency>
401 <groupId>com.fasterxml.jackson.jaxrs</groupId>
402 <artifactId>jackson-jaxrs-json-provider</artifactId>
403 <version>2.6.3</version>
404 </dependency>
405 <dependency>
406 <groupId>commons-beanutils</groupId>
407 <artifactId>commons-beanutils</artifactId>
408 <version>1.9.3</version>
409 </dependency>
410 <dependency>
411 <groupId>com.googlecode.json-simple</groupId>
412 <artifactId>json-simple</artifactId>
413 <version>1.1.1</version>
414 </dependency>
415 <dependency>
416 <groupId>org.seleniumhq.selenium</groupId>
417 <artifactId>selenium-java</artifactId>
418 <version>2.53.1</version>
419 <scope>test</scope>
420 </dependency>
421 <dependency>
422 <groupId>org.seleniumhq.selenium</groupId>
423 <artifactId>selenium-api</artifactId>
424 <version>2.53.1</version>
425 <scope>test</scope>
426 </dependency>
427 <dependency>
428 <groupId>org.testng</groupId>
429 <artifactId>testng</artifactId>
430 <version>6.8</version>
431 <scope>test</scope>
432 </dependency>
433 <dependency>
434 <groupId>org.seleniumhq.selenium</groupId>
435 <artifactId>selenium-firefox-driver</artifactId>
436 <version>2.53.1</version>
437 </dependency>
438 <dependency>
439 <groupId>xml-apis</groupId>
440 <artifactId>xml-apis</artifactId>
441 <version>1.4.01</version>
442 </dependency>
443 <dependency>
jimmydot3982f4f2017-05-07 14:58:24 -0400444 <groupId>org.yaml</groupId>
445 <artifactId>snakeyaml</artifactId>
446 <version>1.16</version>
447 </dependency>
Ofir Sonsinob3567072017-09-04 14:52:07 +0300448 <dependency>
449 <groupId>org.skyscreamer</groupId>
450 <artifactId>jsonassert</artifactId>
451 <version>1.5.0</version>
452 </dependency>
453 <dependency>
454 <groupId>org.openecomp.sdc.sdc-tosca</groupId>
455 <artifactId>sdc-tosca</artifactId>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +0200456 <version>1.1.51-SNAPSHOT</version>
457 <scope>compile</scope>
Ofir Sonsinob3567072017-09-04 14:52:07 +0300458 </dependency>
459 <dependency>
460 <groupId>net.javacrumbs.json-unit</groupId>
461 <artifactId>json-unit</artifactId>
462 <version>1.23.0</version>
463 <scope>test</scope>
464 </dependency>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +0200465 <dependency>
466 <groupId>org.apache.commons</groupId>
467 <artifactId>commons-text</artifactId>
468 <version>1.1</version>
469 </dependency>
470 <dependency>
471 <groupId>org.hamcrest</groupId>
472 <artifactId>java-hamcrest</artifactId>
473 <version>2.0.0.0</version>
474 <scope>test</scope>
475 </dependency>
476 </dependencies>
jimmydot3982f4f2017-05-07 14:58:24 -0400477</project>