summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-05-19 21:37:09 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-05-19 21:37:09 +0000
commit59d0c770f6da8709c581d25fdb9617261eb49a54 (patch)
tree64744ce67e4b4a5598fa4aef904e505ca66db1bf /sca-java-1.x
parented0219292429a5c297248fe323e2edf4b6122be8 (diff)
Merge revision r944905 from 1.0 release branch
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@946412 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x')
-rw-r--r--sca-java-1.x/trunk/tutorials/travelsample/antdefs.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/sca-java-1.x/trunk/tutorials/travelsample/antdefs.xml b/sca-java-1.x/trunk/tutorials/travelsample/antdefs.xml
index db5c9b5d69..163e82452a 100644
--- a/sca-java-1.x/trunk/tutorials/travelsample/antdefs.xml
+++ b/sca-java-1.x/trunk/tutorials/travelsample/antdefs.xml
@@ -151,14 +151,17 @@
</condition>
</target>
- <!-- run the JDK wsimport command if available -->
+ <!-- run the JDK wsimport command if available, then compile the generated Java source -->
<target name="#wsimport-jdk" if="#jdk-wsimport">
<property name="#jaxws-tools-dir" value=""/>
<mkdir dir="target/jaxws-source"/>
<exec executable="${java.home}/../bin/wsimport" dir="." failonerror="true">
<arg line="-keep -s ./target/jaxws-source -p ${package}
- -d ./target/classes src/main/resources/${wsdlfile}"/>
+ -Xnocompile src/main/resources/${wsdlfile}"/>
</exec>
+ <javac destdir="target/classes" debug="true" source="1.5" target="1.5">
+ <src path="target/jaxws-source"/>
+ </javac>
</target>
<!-- If building a downloaded distribution, the JAX-WS jars are in lib/jaxws -->