blob: 828edf772d9fc766fa1cd6418af6f19a187cde7c [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>
73 <groupId>org.openecomp.mso.adapters</groupId>
74 <artifactId>mso-adapters-rest-interface</artifactId>
75 <version>${project.version}</version>
76 </dependency>
77
78 <dependency>
79 <groupId>org.jboss.resteasy</groupId>
80 <artifactId>resteasy-jaxrs</artifactId>
81 <version>3.0.19.Final</version>
82 <scope>provided</scope>
83 <exclusions>
84 <exclusion>
85 <groupId>org.slf4j</groupId>
86 <artifactId>slf4j-api</artifactId>
87 </exclusion>
88 <exclusion>
89 <groupId>org.slf4j</groupId>
90 <artifactId>slf4j-simple</artifactId>
91 </exclusion>
92 <exclusion>
93 <groupId>org.apache.httpcomponents</groupId>
94 <artifactId>httpclient</artifactId>
95 </exclusion>
96 </exclusions>
97 </dependency>
98 <dependency>
99 <groupId>org.openecomp.mso</groupId>
100 <artifactId>status-control</artifactId>
101 <version>${project.version}</version>
102 </dependency>
103 </dependencies>
104
105</project>