wsdl11-wrapper
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.open-esb.core</groupId> <artifactId>wsdl11-wrapper</artifactId> <version>2.4.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>runtime</artifactId> <groupId>net.open-esb.core</groupId> <version>2.4.3</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>net.open-esb.core</groupId> <artifactId>wsdl11-wrapper</artifactId> <name>wsdl11-wrapper</name> <description>WSDL 11 Wrapper</description> <build> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>${project.artifactId}-unpack-deps</id> <phase>generate-sources</phase> <goals><goal>unpack-dependencies</goal></goals> <configuration> <outputDirectory>${project.build.outputDirectory}</outputDirectory> <overWriteReleases>true</overWriteReleases> <excludeTransitive>true</excludeTransitive> <excludeGroupIds>junit,ant,commons-beanutils,commons-collections</excludeGroupIds> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <!-- this project has no tests --> <skip>true</skip> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.open-esb.core</groupId> <artifactId>wsdl2</artifactId> <version>${project.version}</version> </dependency> </dependencies> </project>