Author: gmazza
Date: Mon Nov 26 16:14:56 2012
New Revision: 1413701
URL: http://svn.apache.org/viewvc?rev=1413701&view=rev
Log:
Remove antrun plugin from ws_rm sample
Modified:
cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/ws_rm/pom.xml
Modified:
cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/ws_rm/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/ws_rm/pom.xml?rev=1413701&r1=1413700&r2=1413701&view=diff
==============================================================================
---
cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/ws_rm/pom.xml
(original)
+++
cxf/branches/2.6.x-fixes/distribution/src/main/release/samples/ws_rm/pom.xml
Mon Nov 26 16:14:56 2012
@@ -33,6 +33,15 @@
<cxf.version>${project.version}</cxf.version>
</properties>
<build>
+ <resources>
+ <resource>
+ <directory>src/main/java</directory>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ <exclude>**/package.html</exclude>
+ </excludes>
+ </resource>
+ </resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
@@ -53,6 +62,8 @@
<wsdlOptions>
<wsdlOption>
<wsdl>${basedir}/wsdl/hello_world_rm.wsdl</wsdl>
+
<frontEnd>jaxws21</frontEnd>
+
<faultSerialVersionUID>1</faultSerialVersionUID>
</wsdlOption>
</wsdlOptions>
</configuration>
@@ -62,24 +73,6 @@
</execution>
</executions>
</plugin>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <id>copyxmlfiles</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <tasks>
- <copy
file="${basedir}/src/main/java/demo/ws_rm/client/ws_rm.xml"
todir="${basedir}/target/classes/demo/ws_rm/client" />
- <copy
file="${basedir}/src/main/java/demo/ws_rm/server/ws_rm.xml"
todir="${basedir}/target/classes/demo/ws_rm/server" />
- </tasks>
- </configuration>
- </execution>
- </executions>
- </plugin>
</plugins>
</build>
<profiles>