Determe, Sebastien (sd378r) | 94ee925 | 2017-05-02 03:53:18 -0700 | [diff] [blame] | 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>
|
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 5 | <groupId>org.onap.so</groupId>
|
Determe, Sebastien (sd378r) | 94ee925 | 2017-05-02 03:53:18 -0700 | [diff] [blame] | 6 | <artifactId>adapters</artifactId>
|
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 7 | <version>1.2.0-SNAPSHOT</version>
|
Determe, Sebastien (sd378r) | 94ee925 | 2017-05-02 03:53:18 -0700 | [diff] [blame] | 8 | </parent>
|
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 9 | <groupId>org.onap.so.adapters</groupId>
|
Determe, Sebastien (sd378r) | 94ee925 | 2017-05-02 03:53:18 -0700 | [diff] [blame] | 10 | <artifactId>mso-network-adapter-async-client</artifactId>
|
| 11 | <packaging>jar</packaging>
|
| 12 | <name>mso-network-adapter-async-client</name>
|
| 13 | <description>MSO Network 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>NetworkAdapterNotify.wsdl</wsdlFile>
|
| 43 | </wsdlFiles>
|
| 44 | <wsdlLocation>/NetworkAdapterNotify.wsdl</wsdlLocation>
|
| 45 | <packageName>org.openecomp.mso.adapters.network.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>
|
| 55 | <!--This plugin's configuration is used to store Eclipse m2e settings
|
| 56 | 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>
|
| 90 |
|
| 91 | </project>
|