summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/clients/currency-converter-ws-jaxws-client/pom.xml
diff options
context:
space:
mode:
authorrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-06-01 21:26:17 +0000
committerrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-06-01 21:26:17 +0000
commitf3d8c7082f250431dfe35ee33af41bca04229c42 (patch)
treea144db7e1dd9dd74d674d1b2eade8de62cbf916d /sandbox/travelsample/clients/currency-converter-ws-jaxws-client/pom.xml
parentf2ab9cf0d65589b758858f2f9cf3d1ca83890bd4 (diff)
Add maven plugin repo for java.net wsimport plugin
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@780840 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sandbox/travelsample/clients/currency-converter-ws-jaxws-client/pom.xml52
1 files changed, 32 insertions, 20 deletions
diff --git a/sandbox/travelsample/clients/currency-converter-ws-jaxws-client/pom.xml b/sandbox/travelsample/clients/currency-converter-ws-jaxws-client/pom.xml
index 6c347c5359..69960a6307 100644
--- a/sandbox/travelsample/clients/currency-converter-ws-jaxws-client/pom.xml
+++ b/sandbox/travelsample/clients/currency-converter-ws-jaxws-client/pom.xml
@@ -24,7 +24,8 @@
<artifactId>tuscany-sca</artifactId>
<version>1.5</version>
<!--relativePath>../../pom.xml</relativePath-->
- </parent><version>1.0-SNAPSHOT</version>
+ </parent>
+ <version>1.0-SNAPSHOT</version>
<artifactId>currency-converter-ws-jaxws-client</artifactId>
<name>Apache Tuscany SCA Tours Currency Converter Web Service JAX-WS Client</name>
@@ -37,26 +38,37 @@
</dependency>
</dependencies>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>java.net2</id>
+ <name>java.net Maven 2.x Repository</name>
+ <url>http://download.java.net/maven/2</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+
<build>
- <finalName>${artifactId}</finalName>
+ <finalName>${artifactId}</finalName>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>jaxws-maven-plugin</artifactId>
- <version>1.12</version>
- <executions>
- <execution>
- <goals>
- <goal>wsimport</goal>
- </goals>
- <configuration>
- <wsdlDirectory>${basedir}/src/main/resources/wsdl</wsdlDirectory>
- <packageName>scatours.curencyconverter.client</packageName>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jaxws-maven-plugin</artifactId>
+ <version>1.12</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>wsimport</goal>
+ </goals>
+ <configuration>
+ <wsdlDirectory>${basedir}/src/main/resources/wsdl</wsdlDirectory>
+ <packageName>scatours.curencyconverter.client</packageName>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
</build>
</project>