Initial OpenECOMP MSO commit
[so.git] / adapters / mso-requests-db-adapter / pom.xml
1 <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>0.0.4-SNAPSHOT</version>
8         </parent>
9
10         <groupId>org.openecomp.mso.adapters</groupId>
11         <artifactId>mso-requests-db-adapter</artifactId>
12         <packaging>war</packaging>
13         
14         
15         <dependencies>
16                 
17                 <dependency>
18                         <groupId>org.openecomp.mso</groupId>
19                         <artifactId>mso-requests-db</artifactId>
20                         <version>${project.version}</version>
21                 </dependency>
22                 <dependency>
23                         <groupId>org.jboss.resteasy</groupId>
24                         <artifactId>resteasy-jaxrs</artifactId>
25                         <version>3.0.19.Final</version>
26                         <scope>provided</scope>
27                         <exclusions>
28                                 <exclusion>
29                                         <groupId>org.slf4j</groupId>
30                                         <artifactId>slf4j-api</artifactId>
31                                 </exclusion>
32                                 <exclusion>
33                                         <groupId>org.slf4j</groupId>
34                                         <artifactId>slf4j-simple</artifactId>
35                                 </exclusion>
36                                 <exclusion>
37                                         <groupId>org.apache.httpcomponents</groupId>
38                                         <artifactId>httpclient</artifactId>
39                                 </exclusion>
40                         </exclusions>
41                 </dependency>
42                 <dependency>
43                         <groupId>org.openecomp.mso</groupId>
44                         <artifactId>status-control</artifactId>
45                         <version>${project.version}</version>
46                 </dependency>
47
48         </dependencies>
49
50         <build>
51                 <finalName>${project.artifactId}-${project.version}</finalName>
52                 <plugins>
53                                 
54                         <plugin>
55                                 <artifactId>maven-war-plugin</artifactId>
56                                 <version>2.4</version>
57                                 <configuration>
58                                         <warSourceDirectory>WebContent</warSourceDirectory>
59                                         <failOnMissingWebXml>false</failOnMissingWebXml>
60                                         <attachClasses>true</attachClasses>
61                                 </configuration>
62                         </plugin>
63
64                         <plugin>
65                                 <groupId>org.jvnet.jax-ws-commons</groupId>
66                                 <artifactId>jaxws-maven-plugin</artifactId>
67                                 <version>2.3</version>
68                                 <executions>
69                                         <execution>
70                                                 <goals>
71                                                         <goal>wsgen</goal>
72                                                 </goals>
73                                         </execution>
74                                 </executions>
75                                 <configuration>
76                                         <verbose>true</verbose>
77                                         <sei>org.openecomp.mso.adapters.requestsdb.MsoRequestsDbAdapterImpl</sei>
78                                         <genWsdl>true</genWsdl>
79                                         <inlineSchemas>true</inlineSchemas>
80                                 </configuration>
81                                 <dependencies>
82                                         <dependency>
83                                                 <groupId>com.sun.xml.ws</groupId>
84                                                 <artifactId>jaxws-tools</artifactId>
85                                                 <version>2.2.7</version>
86                                         </dependency>
87                                         <dependency>
88                                                 <groupId>org.openecomp.mso.adapters</groupId>
89                                                 <artifactId>mso-adapter-utils</artifactId>
90                                                 <version>${project.version}</version>
91                                         </dependency>
92                                 </dependencies>
93                         </plugin>
94                 </plugins>
95         </build>
96 </project>