blob: 67d81dbb494b4be8a9084af6800c9b098b0962f8 [file] [log] [blame]
xg353yb6b7bef2017-04-11 13:30:42 +02001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
Arthur Martella22e015f2018-02-22 14:24:40 -05005 <groupId>org.onap.so</groupId>
xg353yb6b7bef2017-04-11 13:30:42 +02006 <artifactId>adapters</artifactId>
Jessica Wagantall777f6372017-11-20 11:10:28 -08007 <version>1.2.0-SNAPSHOT</version>
xg353yb6b7bef2017-04-11 13:30:42 +02008 </parent>
9
Arthur Martella22e015f2018-02-22 14:24:40 -050010 <groupId>org.onap.so.adapters</groupId>
xg353yb6b7bef2017-04-11 13:30:42 +020011 <artifactId>mso-catalog-db-adapter</artifactId>
12 <packaging>war</packaging>
13
14 <build>
15 <finalName>${project.artifactId}-${project.version}</finalName>
16 <plugins>
17 <plugin>
18 <artifactId>maven-war-plugin</artifactId>
19 <version>2.4</version>
20 <configuration>
21 <warSourceDirectory>WebContent</warSourceDirectory>
22 <failOnMissingWebXml>false</failOnMissingWebXml>
23 <attachClasses>true</attachClasses>
24 </configuration>
25 </plugin>
26
27 </plugins>
28 <pluginManagement>
29 <plugins>
30 <!--This plugin's configuration is used to store Eclipse m2e settings
31 only. It has no influence on the Maven build itself. -->
32 <plugin>
33 <groupId>org.eclipse.m2e</groupId>
34 <artifactId>lifecycle-mapping</artifactId>
35 <version>1.0.0</version>
36 <configuration>
37 <lifecycleMappingMetadata>
38 <pluginExecutions>
39 <pluginExecution>
40 <pluginExecutionFilter>
41 <groupId>
42 org.jvnet.jax-ws-commons
43 </groupId>
44 <artifactId>
45 jaxws-maven-plugin
46 </artifactId>
47 <versionRange>
Benjamin, Max (mb388a)db675a52018-03-21 14:16:56 -040048 [2.3.1,)
xg353yb6b7bef2017-04-11 13:30:42 +020049 </versionRange>
50 <goals>
51 <goal>wsgen</goal>
52 </goals>
53 </pluginExecutionFilter>
54 <action>
55 <ignore></ignore>
56 </action>
57 </pluginExecution>
58 </pluginExecutions>
59 </lifecycleMappingMetadata>
60 </configuration>
61 </plugin>
62 </plugins>
63 </pluginManagement>
64 </build>
65
66 <dependencies>
67 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -050068 <groupId>org.onap.so</groupId>
xg353yb6b7bef2017-04-11 13:30:42 +020069 <artifactId>mso-catalog-db</artifactId>
70 <version>${project.version}</version>
71 </dependency>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070072 <!--<dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -050073 <groupId>org.onap.so</groupId>
xg353yb6b7bef2017-04-11 13:30:42 +020074 <artifactId>status-control</artifactId>
75 <version>${project.version}</version>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070076 </dependency>-->
Arthur Martellae371d752017-10-02 11:03:02 -040077 <dependency>
Arthur Martellae371d752017-10-02 11:03:02 -040078 <groupId>javax.json</groupId>
79 <artifactId>javax.json-api</artifactId>
80 <version>1.0</version>
81 <scope>test</scope>
82 </dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -040083<dependency>
84 <groupId>org.glassfish</groupId>
85 <artifactId>javax.json</artifactId>
86 <version>1.0.4</version>
87 <scope>test</scope>
88</dependency>
89<dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -040090 <groupId>javax.servlet</groupId>
91 <artifactId>javax.servlet-api</artifactId>
92 <version>3.1.0</version>
93 <scope>test</scope>
94</dependency>
xg353yb6b7bef2017-04-11 13:30:42 +020095 </dependencies>
96
Rob Daugherty38f72072018-03-14 02:07:32 -040097</project>