Initial OpenECOMP MSO commit
[so.git] / adapters / mso-tenant-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         <groupId>org.openecomp.mso.adapters</groupId>
10         <artifactId>mso-tenant-adapter</artifactId>
11         <packaging>war</packaging>
12         <name>mso-tenant-adapter</name>
13         <description>Web Service endpoint for Tenant operations</description>
14
15         <build>
16                 <finalName>${project.artifactId}-${project.version}</finalName>
17                 <plugins>
18
19                         <plugin>
20                                 <groupId>org.apache.maven.plugins</groupId>
21                                 <artifactId>maven-resources-plugin</artifactId>
22                                 <version>2.6</version>
23                                 <executions>
24                                         <execution>
25                                                 <id>copy-resources</id>
26                                                 <phase>validate</phase>
27                                                 <goals>
28                                                         <goal>copy-resources</goal>
29                                                 </goals>
30                                                 <configuration>
31                                                         <resources>
32                                                                 <resource>
33                                                                         <directory>./src/main/resources/META-INF</directory>
34                                                                         <filtering>false</filtering>
35                                                                 </resource>
36                                                         </resources>
37                                                         <outputDirectory>${project.build.directory}/${project.build.finalName}/META-INF/</outputDirectory>
38                                                 </configuration>
39                                         </execution>
40                                 </executions>
41                         </plugin>
42                         <plugin>
43                                 <artifactId>maven-war-plugin</artifactId>
44                                 <version>2.4</version>
45                                 <configuration>
46                                         <warSourceDirectory>WebContent</warSourceDirectory>
47                                         <failOnMissingWebXml>false</failOnMissingWebXml>
48                                         <attachClasses>true</attachClasses>
49                                 </configuration>
50                         </plugin>
51                         <plugin>
52                                 <groupId>org.jvnet.jax-ws-commons</groupId>
53                                 <artifactId>jaxws-maven-plugin</artifactId>
54                                 <version>2.3</version>
55                                 <executions>
56                                         <execution>
57                                                 <goals>
58                                                         <goal>wsgen</goal>
59                                                 </goals>
60                                         </execution>
61                                 </executions>
62                                 <configuration>
63                                         <verbose>true</verbose>
64                                         <sei>org.openecomp.mso.adapters.tenant.MsoTenantAdapterImpl</sei>
65                                         <genWsdl>true</genWsdl>
66                                         <inlineSchemas>true</inlineSchemas>
67                                 </configuration>
68                                 <dependencies>
69                                         <dependency>
70                                                 <groupId>com.sun.xml.ws</groupId>
71                                                 <artifactId>jaxws-tools</artifactId>
72                                                 <version>2.2.7</version>
73                                         </dependency>
74                                         <dependency>
75                                                 <groupId>org.openecomp.mso.adapters</groupId>
76                                                 <artifactId>mso-adapter-utils</artifactId>
77                                                 <version>${project.version}</version>
78                                         </dependency>
79                                 </dependencies>
80                         </plugin>
81
82                 </plugins>
83                 <pluginManagement>
84                         <plugins>
85                                 <!--This plugin's configuration is used to store Eclipse m2e settings 
86                                         only. It has no influence on the Maven build itself. -->
87                                 <plugin>
88                                         <groupId>org.eclipse.m2e</groupId>
89                                         <artifactId>lifecycle-mapping</artifactId>
90                                         <version>1.0.0</version>
91                                         <configuration>
92                                                 <lifecycleMappingMetadata>
93                                                         <pluginExecutions>
94                                                                 <pluginExecution>
95                                                                         <pluginExecutionFilter>
96                                                                                 <groupId>
97                                                                                         org.jvnet.jax-ws-commons
98                                                                                 </groupId>
99                                                                                 <artifactId>
100                                                                                         jaxws-maven-plugin
101                                                                                 </artifactId>
102                                                                                 <versionRange>
103                                                                                         [2.3,)
104                                                                                 </versionRange>
105                                                                                 <goals>
106                                                                                         <goal>wsgen</goal>
107                                                                                 </goals>
108                                                                         </pluginExecutionFilter>
109                                                                         <action>
110                                                                                 <ignore></ignore>
111                                                                         </action>
112                                                                 </pluginExecution>
113                                                         </pluginExecutions>
114                                                 </lifecycleMappingMetadata>
115                                         </configuration>
116                                 </plugin>
117                         </plugins>
118                 </pluginManagement>
119         </build>
120         <dependencies>
121                 <dependency>
122                         <groupId>org.openecomp.mso.adapters</groupId>
123                         <artifactId>mso-adapter-utils</artifactId>
124                         <version>${project.version}</version>
125                 </dependency>
126                 <dependency>
127                         <groupId>org.openecomp.mso.adapters</groupId>
128                         <artifactId>mso-adapters-rest-interface</artifactId>
129                         <version>${project.version}</version>
130                 </dependency>
131                 <dependency>
132                         <groupId>javax</groupId>
133                         <artifactId>javaee-web-api</artifactId>
134                         <version>6.0</version>
135                         <scope>provided</scope>
136                 </dependency>
137                 <dependency>
138                         <groupId>org.jboss.spec.javax.ejb</groupId>
139                         <artifactId>jboss-ejb-api_3.2_spec</artifactId>
140                         <version>1.0.0.Final</version>
141                         <scope>provided</scope>
142                 </dependency>
143                 <dependency>
144                         <groupId>org.jboss.ejb3</groupId>
145                         <artifactId>jboss-ejb3-ext-api</artifactId>
146                         <version>2.2.0.Final</version>
147                         <scope>provided</scope>
148                 </dependency>
149                 <dependency>
150                         <groupId>org.openecomp.mso</groupId>
151                         <artifactId>status-control</artifactId>
152                         <version>${project.version}</version>
153                 </dependency>
154         </dependencies>
155 </project>