blob: d00044ed4b332f01bfcaea6e0d627ffd7869f8ca [file] [log] [blame]
ChrisC025301d2017-01-31 11:40:03 +01001<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>
ChrisC1ba1d192017-03-13 05:01:04 -07007 <version>1.1.0-SNAPSHOT</version>
ChrisC025301d2017-01-31 11:40:03 +01008 </parent>
9 <groupId>org.openecomp.mso.adapters</groupId>
10 <artifactId>mso-vnf-adapter-async-client</artifactId>
11 <packaging>jar</packaging>
12 <name>mso-vnf-adapter-async-client</name>
13 <description>MSO VNF Adapter Async Client</description>
14
15 <build>
16 <finalName>${project.artifactId}-${project.version}</finalName>
17 <plugins>
18 <plugin>
19 <artifactId>maven-jar-plugin</artifactId>
20 <version>2.6</version>
21 <configuration>
22 <classesDirectory>target/classes</classesDirectory>
23 </configuration>
24 </plugin>
25 <plugin>
26 <groupId>org.jvnet.jax-ws-commons</groupId>
27 <artifactId>jaxws-maven-plugin</artifactId>
28 <version>2.3</version>
29 <executions>
30 <execution>
31 <id>generate-stubs</id>
32 <phase>process-classes</phase>
33 <goals>
34 <goal>wsimport</goal>
35 </goals>
36 <configuration>
37 <vmArgs>
38 <vmArg>-Djavax.xml.accessExternalSchema=all</vmArg>
39 </vmArgs>
40 <wsdlDirectory>src/main/resources</wsdlDirectory>
41 <wsdlFiles>
42 <wsdlFile>VnfAdapterNotify.wsdl</wsdlFile>
43 </wsdlFiles>
44 <wsdlLocation>/VnfAdapterNotify.wsdl</wsdlLocation>
45 <packageName>org.openecomp.mso.adapters.vnf.async.client</packageName>
46 <xnocompile>false</xnocompile>
47 <keep>true</keep>
48 </configuration>
49 </execution>
50 </executions>
51 </plugin>
52 </plugins>
53 <pluginManagement>
54 <plugins>
xg353yb6b7bef2017-04-11 13:30:42 +020055 <!--This plugin's configuration is used to store Eclipse m2e settings
ChrisC025301d2017-01-31 11:40:03 +010056 only. It has no influence on the Maven build itself. -->
57 <plugin>
58 <groupId>org.eclipse.m2e</groupId>
59 <artifactId>lifecycle-mapping</artifactId>
60 <version>1.0.0</version>
61 <configuration>
62 <lifecycleMappingMetadata>
63 <pluginExecutions>
64 <pluginExecution>
65 <pluginExecutionFilter>
66 <groupId>
67 org.jvnet.jax-ws-commons
68 </groupId>
69 <artifactId>
70 jaxws-maven-plugin
71 </artifactId>
72 <versionRange>
73 [2.3,)
74 </versionRange>
75 <goals>
76 <goal>wsimport</goal>
77 </goals>
78 </pluginExecutionFilter>
79 <action>
80 <ignore></ignore>
81 </action>
82 </pluginExecution>
83 </pluginExecutions>
84 </lifecycleMappingMetadata>
85 </configuration>
86 </plugin>
87 </plugins>
88 </pluginManagement>
89 </build>
xg353yb6b7bef2017-04-11 13:30:42 +020090
ChrisC025301d2017-01-31 11:40:03 +010091</project>