fractal-bf-examples-amazon-model
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ow2.fractal.bf.examples.amazon</groupId>
<artifactId>fractal-bf-examples-amazon-model</artifactId>
<version>0.10</version>
</dependency><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>org.ow2.fractal.bf.examples.amazon</groupId>
<artifactId>fractal-bf-examples-amazon-parent</artifactId>
<version>0.10</version>
</parent>
<description>
Generate stub classes for using an Amazon Web Service.
</description>
<name>Fractal BF: Amazon WebService example model</name>
<artifactId>fractal-bf-examples-amazon-model</artifactId>
<build>
<plugins>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<sourceRoot>
${basedir}/target/generated/src/main/java
</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>
${basedir}/src/main/wsdl/AWSECommerceService.wsdl
</wsdl>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<!-- OW2 Nexus requires a source artifact when releasing artifacts. -->
<!-- As this module has no src/main/java then include generated Java sources -->
<!-- into the source artifact produced by maven-source-plugin of the OW 1.3 pom.xml -->
<sourceDirectory>target/generated/src/main/java</sourceDirectory>
</build>
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>${cxf.version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>
geronimo-activation_1.1_spec
</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>