summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/trunk/tutorials
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-10-25 09:17:56 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-10-25 09:17:56 +0000
commit305bbdc8713a40ad21dc5b21709110d2f8bcc8bc (patch)
treedab2a999f27f22c7883c8960e58227cdb5c3b1ba /sca-java-1.x/trunk/tutorials
parentf45e1dc453eac84bb5ce96ad79ffdf734ea27da3 (diff)
Merge r998237 Add build.xml file to svn with generated dependencies
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1026989 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/trunk/tutorials')
-rw-r--r--sca-java-1.x/trunk/tutorials/store/catalog-mediation/build.xml62
-rw-r--r--sca-java-1.x/trunk/tutorials/store/catalog-mediation/pom.xml2
2 files changed, 64 insertions, 0 deletions
diff --git a/sca-java-1.x/trunk/tutorials/store/catalog-mediation/build.xml b/sca-java-1.x/trunk/tutorials/store/catalog-mediation/build.xml
new file mode 100644
index 0000000000..2049ca169a
--- /dev/null
+++ b/sca-java-1.x/trunk/tutorials/store/catalog-mediation/build.xml
@@ -0,0 +1,62 @@
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+<!DOCTYPE project [
+<!ENTITY buildDependency SYSTEM "build-dependency.xml">
+]>
+
+<project name="tutorial-catalog-mediation" default="compile">
+ &buildDependency;
+ <target name="compile">
+ <mkdir dir="target/classes"/>
+ <javac destdir="target/classes" debug="on" source="1.5" target="1.5">
+ <src path="."/>
+ <classpath>
+ <fileset refid="tutorial-assets-jar"/>
+ <fileset refid="tutorial-catalog-ejb-jar"/>
+ <fileset refid="tuscany.jars"/>
+ <fileset refid="3rdparty.jars"/>
+ <fileset refid="3rdparty-provided.jars"/>
+ </classpath>
+ </javac>
+ <copy todir="target/classes">
+ <fileset dir="." excludes="**/*.java, pom.xml, build.xml, build-dependency.xml, target/**"/>
+ </copy>
+ <jar destfile="target/tutorial-catalog-mediation.jar" basedir="target/classes">
+ <manifest>
+ </manifest>
+ </jar>
+ </target>
+
+ <target name="package" depends="compile"/>
+
+ <target name="clean">
+ <delete dir="target" includeemptydirs="true"/>
+ </target>
+
+ <fileset id="tutorial-assets-jar" dir="../assets/target">
+ <include name="tutorial-assets.jar"/>
+ </fileset>
+ <fileset id="tutorial-catalog-ejb-jar" dir="../catalog-ejb/target">
+ <include name="tutorial-catalog-ejb.jar"/>
+ </fileset>
+ <fileset id="3rdparty-provided.jars" dir="../../../lib">
+ <include name="geronimo-ejb_3.0_spec-1.0.jar"/>
+ </fileset>
+
+</project>
diff --git a/sca-java-1.x/trunk/tutorials/store/catalog-mediation/pom.xml b/sca-java-1.x/trunk/tutorials/store/catalog-mediation/pom.xml
index 674c775458..18642bd249 100644
--- a/sca-java-1.x/trunk/tutorials/store/catalog-mediation/pom.xml
+++ b/sca-java-1.x/trunk/tutorials/store/catalog-mediation/pom.xml
@@ -67,6 +67,7 @@
<exclude>**/.*/**</exclude>
<exclude>pom.xml</exclude>
<exclude>build.xml</exclude>
+ <exclude>build-dependency.xml</exclude>
<exclude>target/**</exclude>
</excludes>
</resource>
@@ -81,6 +82,7 @@
<execution>
<configuration>
<pathToRootDir>../../..</pathToRootDir>
+ <buildDependencyFileOnly>true</buildDependencyFileOnly>
</configuration>
<goals>
<goal>generate</goal>