summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-09-30 16:01:03 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-09-30 16:01:03 +0000
commitc88df04dcba6249959cbd5fcc5920539f14517ac (patch)
treebea94869795f752bae9ae672b05f5ed5e5a8e8c8 /sca-java-1.x
parent66db96276e61dd2c4d673c13d35aba491c450c78 (diff)
Remove redundant classpath dependencies
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1003122 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x')
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.1/samples/helloworld-ws-sdo/build.xml33
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.1/samples/quote-xquery/build.xml22
2 files changed, 25 insertions, 30 deletions
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/samples/helloworld-ws-sdo/build.xml b/sca-java-1.x/branches/sca-java-1.6.1/samples/helloworld-ws-sdo/build.xml
index 2439a35b35..0cc2b78355 100644
--- a/sca-java-1.x/branches/sca-java-1.6.1/samples/helloworld-ws-sdo/build.xml
+++ b/sca-java-1.x/branches/sca-java-1.6.1/samples/helloworld-ws-sdo/build.xml
@@ -31,12 +31,6 @@
<mkdir dir="target/sdo-source"/>
</target>
- <path id="project.classpath">
- <pathelement path="target/classes"/>
- <pathelement path="target/sdo-source"/>
- <pathelement location="${tuscany.sca.manifest.location}"/>
- </path>
-
<target name="generate-sdo" depends="init">
<java classname="org.apache.tuscany.sdo.generate.XSD2JavaGenerator" fork="true">
<arg value="-targetDirectory"/>
@@ -50,7 +44,7 @@
<arg value="-noUnsettable"/>
<arg value="src/main/resources/wsdl/helloworld.wsdl"/>
- <classpath refid="project.classpath"/>
+ <classpath location="${tuscany.sca.manifest.location}"/>
</java>
<java classname="org.apache.tuscany.sdo.generate.XSD2JavaGenerator" fork="true">
<arg value="-targetDirectory"/>
@@ -64,7 +58,7 @@
<arg value="-noUnsettable"/>
<arg value="src/main/resources/test.xsd"/>
- <classpath refid="project.classpath"/>
+ <classpath location="${tuscany.sca.manifest.location}"/>
</java>
</target>
@@ -75,35 +69,42 @@
target="1.5">
<src location="src/main/java"/>
<src location="target/sdo-source"/>
- <classpath refid="project.classpath"/>
+ <classpath location="${tuscany.sca.manifest.location}"/>
</javac>
<copy todir="target/classes">
<fileset dir="src/main/resources"/>
- <fileset dir="target/sdo-source"/>
</copy>
<jar destfile="target/${test.jar}" basedir="target/classes">
<manifest>
- <attribute name="Main-Class" value="${test.class}" />
+ <attribute name="Main-Class" value="${client.class}" />
</manifest>
</jar>
</target>
<target name="run-classes">
<java classname="${client.class}" fork="true">
- <classpath refid="project.classpath"/> </java>
+= <classpath>
+ <pathelement path="target/classes"/>
+ <pathelement location="${tuscany.sca.manifest.location}"/>
+ </classpath>
+ </java>
</target>
<target name="run-server">
<java classname="${server.class}" fork="true">
- <classpath path="target/${test.jar}"/>
- <classpath refid="project.classpath"/>
+ <classpath>
+ <pathelement path="target/${test.jar}"/>
+ <pathelement location="${tuscany.sca.manifest.location}"/>
+ </classpath>
</java>
</target>
<target name="run">
<java classname="${client.class}" fork="true">
- <classpath path="target/${test.jar}"/>
- <classpath refid="project.classpath"/>
+ <classpath>
+ <pathelement path="target/${test.jar}"/>
+ <pathelement location="${tuscany.sca.manifest.location}"/>
+ </classpath>
</java>
</target>
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/samples/quote-xquery/build.xml b/sca-java-1.x/branches/sca-java-1.6.1/samples/quote-xquery/build.xml
index ef76c20f72..2e7ffb9c8a 100644
--- a/sca-java-1.x/branches/sca-java-1.6.1/samples/quote-xquery/build.xml
+++ b/sca-java-1.x/branches/sca-java-1.6.1/samples/quote-xquery/build.xml
@@ -27,12 +27,6 @@
<property name="tuscany.sca.manifest.location" value="../../lib/tuscany-sca-manifest.jar" />
- <path id="project.classpath">
- <pathelement path="target/classes" />
- <pathelement path="target/sdo-source" />
- <pathelement location="${tuscany.sca.manifest.location}" />
- </path>
-
<target name="generate-sdo" depends="init">
<java classname="org.apache.tuscany.sdo.generate.XSD2JavaGenerator" fork="true">
<arg value="-targetDirectory" />
@@ -42,7 +36,7 @@
properly transformed to Node as some properties are treated as unset -->
<arg value="src/main/resources/wsdl/quotejoin.wsdl" />
- <classpath refid="project.classpath" />
+ <classpath location="${tuscany.sca.manifest.location}" />
</java>
<java classname="org.apache.tuscany.sdo.generate.XSD2JavaGenerator" fork="true">
<arg value="-targetDirectory" />
@@ -52,7 +46,7 @@
properly transformed to Node as some properties are treated as unset -->
<arg value="src/main/resources/wsdl/Quote.xsd" />
- <classpath refid="project.classpath" />
+ <classpath location="${tuscany.sca.manifest.location}" />
</java>
<java classname="org.apache.tuscany.sdo.generate.XSD2JavaGenerator" fork="true">
<arg value="-targetDirectory" />
@@ -62,7 +56,7 @@
properly transformed to Node as some properties are treated as unset -->
<arg value="src/main/resources/wsdl/AvailQuote.xsd" />
- <classpath refid="project.classpath" />
+ <classpath location="${tuscany.sca.manifest.location}" />
</java>
<java classname="org.apache.tuscany.sdo.generate.XSD2JavaGenerator" fork="true">
<arg value="-targetDirectory" />
@@ -72,7 +66,7 @@
properly transformed to Node as some properties are treated as unset -->
<arg value="src/main/resources/wsdl/PriceQuote.xsd" />
- <classpath refid="project.classpath" />
+ <classpath location="${tuscany.sca.manifest.location}" />
</java>
</target>
@@ -82,7 +76,7 @@
<javac destdir="target/classes" debug="on" source="1.5" target="1.5">
<src path="target/sdo-source"/>
<src path="src/main/java"/>
- <classpath refid="project.classpath" />
+ <classpath location="${tuscany.sca.manifest.location}" />
</javac>
<copy todir="target/classes">
<fileset dir="src/main/resources" />
@@ -99,8 +93,8 @@
<java classname="${test.class}" fork="true">
<classpath>
<pathelement path="target/classes" />
+ <pathelement location="${tuscany.sca.manifest.location}" />
</classpath>
- <classpath refid="project.classpath" />
</java>
</target>
@@ -108,8 +102,8 @@
<java classname="${test.class}" fork="true">
<classpath>
<pathelement path="target/${test.jar}" />
+ <pathelement location="${tuscany.sca.manifest.location}" />
</classpath>
- <classpath refid="project.classpath" />
</java>
</target>
@@ -117,8 +111,8 @@
<java classname="${test.server.class}" fork="true">
<classpath>
<pathelement path="target/${test.jar}" />
+ <pathelement location="${tuscany.sca.manifest.location}" />
</classpath>
- <classpath refid="project.classpath" />
</java>
</target>