vi-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.java.dev.vcc.thirdparty</groupId> <artifactId>vi-api</artifactId> <version>4.0.0-4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2008 Stephen Connolly. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>net.java.dev.vcc.thirdparty</groupId> <artifactId>thirdparty</artifactId> <version>0.0.4</version> </parent> <artifactId>vi-api</artifactId> <version>4.0.0-4</version> <packaging>jar</packaging> <name>VMware Virtual Infrastructure SDK for Java</name> <description>This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.</description> <properties> <jaxws-version>2.1.3</jaxws-version> </properties> <dependencies> <dependency> <groupId>com.sun.xml.ws</groupId> <artifactId>jaxws-rt</artifactId> <version>2.1.3</version> </dependency> </dependencies> <build> <resources combine.children="append"> <resource> <directory>${basedir}/src/main/wsdl</directory> <targetPath>com/vmware</targetPath> </resource> </resources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jaxws-maven-plugin</artifactId> <version>1.10</version> <configuration> <target>2.1</target> <xnocompile>true</xnocompile> <wsdlDirectory>${basedir}/src/main/wsdl</wsdlDirectory> <xjcArgs><xjcArg>-Xcollection-setter-injector</xjcArg></xjcArgs> </configuration> <executions> <execution> <id>vim25</id> <goals> <goal>wsimport</goal> </goals> <configuration> <staleFile>${project.build.directory}/jaxws/stale/.staleFlag-vim25</staleFile> <packageName>com.vmware.vim25</packageName> <wsdlFiles> <wsdlFile>vim25/vimService.wsdl</wsdlFile> </wsdlFiles> <wsdlLocation>vimService.wsdl</wsdlLocation> </configuration> </execution> <execution> <id>vim</id> <goals> <goal>wsimport</goal> </goals> <configuration> <staleFile>${project.build.directory}/jaxws/stale/.staleFlag-vim</staleFile> <packageName>com.vmware.vim</packageName> <wsdlFiles> <wsdlFile>vim/vimService.wsdl</wsdlFile> </wsdlFiles> <wsdlLocation>vimService.wsdl</wsdlLocation> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>com.sun.xml.ws</groupId> <artifactId>jaxws-tools</artifactId> <version>2.1.3</version> </dependency> <dependency> <groupId>net.java.dev.vcc.thirdparty</groupId> <artifactId>collection-setter-injector</artifactId> <version>0.5.0-1</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>process-sources</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <replace dir="${project.build.directory}/jaxws/wsimport/java" summary="true"> <include name="**/*.java" /> <replacetoken>.class.getResource(".");</replacetoken> <replacevalue>.class.getResource("");</replacevalue> </replace> </tasks> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <fork>true</fork> <maxmem>384m</maxmem> </configuration> </plugin> </plugins> </build> </project>