blob: e7c4b533c70333f2e438034033d2eaebc08d8a94 [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>
5 <groupId>org.openecomp.mso</groupId>
6 <artifactId>adapters</artifactId>
7 <version>1.1.0-SNAPSHOT</version>
8 </parent>
9
10 <groupId>org.openecomp.mso.adapters</groupId>
11 <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>
48 [2.3,)
49 </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>
68 <groupId>org.openecomp.mso</groupId>
69 <artifactId>mso-catalog-db</artifactId>
70 <version>${project.version}</version>
71 </dependency>
72 <dependency>
xg353yb6b7bef2017-04-11 13:30:42 +020073 <groupId>org.jboss.resteasy</groupId>
74 <artifactId>resteasy-jaxrs</artifactId>
75 <version>3.0.19.Final</version>
76 <scope>provided</scope>
77 <exclusions>
78 <exclusion>
79 <groupId>org.slf4j</groupId>
80 <artifactId>slf4j-api</artifactId>
81 </exclusion>
82 <exclusion>
83 <groupId>org.slf4j</groupId>
84 <artifactId>slf4j-simple</artifactId>
85 </exclusion>
86 <exclusion>
87 <groupId>org.apache.httpcomponents</groupId>
88 <artifactId>httpclient</artifactId>
89 </exclusion>
90 </exclusions>
91 </dependency>
92 <dependency>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070093 <groupId>org.jboss.resteasy</groupId>
94 <artifactId>resteasy-jackson-provider</artifactId>
95 <version>3.0.16.Final</version>
96 </dependency>
97 <!--<dependency>
xg353yb6b7bef2017-04-11 13:30:42 +020098 <groupId>org.openecomp.mso</groupId>
99 <artifactId>status-control</artifactId>
100 <version>${project.version}</version>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700101 </dependency>-->
xg353yb6b7bef2017-04-11 13:30:42 +0200102 </dependencies>
103
104</project>