summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2010-08-31 00:19:49 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2010-08-31 00:19:49 +0000
commit311c58145cc58ceb144b44ea6c8776843505fed2 (patch)
tree986d09b93277031576f821d036c3381be8553dea
parent4cac6f63be4e919b1d97624bb0e255a39e600190 (diff)
Add sample to Maven build. Remove outdated build.xml, will add a working one later.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@991045 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--sca-java-2.x/trunk/samples/implementation-extension/build.xml51
-rw-r--r--sca-java-2.x/trunk/samples/pom.xml1
2 files changed, 1 insertions, 51 deletions
diff --git a/sca-java-2.x/trunk/samples/implementation-extension/build.xml b/sca-java-2.x/trunk/samples/implementation-extension/build.xml
deleted file mode 100644
index 78bae79859..0000000000
--- a/sca-java-2.x/trunk/samples/implementation-extension/build.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-<!--
- * 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.
--->
-<project name="implementation-pojo-extension" default="compile">
- <property name="test.jar" value="sample-implementation-pojo-extension.jar" />
-
- <target name="init">
- <mkdir dir="target/classes"/>
- </target>
-
- <target name="compile" depends="init">
- <javac srcdir="src/main/java"
- destdir="target/classes"
- debug="on"
- source="1.5"
- target="1.5">
- <classpath>
- <pathelement location="../../lib/tuscany-sca-manifest.jar"/>
- </classpath>
- </javac>
- <copy todir="target/classes">
- <fileset dir="src/main/resources"/>
- </copy>
- <jar destfile="target/${test.jar}" basedir="target/classes">
- <manifest>
- <attribute name="Main-Class" value="${test.class}" />
- </manifest>
- </jar>
- </target>
-
- <target name="clean">
- <delete quiet="true" includeemptydirs="true">
- <fileset dir="target"/>
- </delete>
- </target>
-</project>
diff --git a/sca-java-2.x/trunk/samples/pom.xml b/sca-java-2.x/trunk/samples/pom.xml
index e081de764a..a5b1c452ca 100644
--- a/sca-java-2.x/trunk/samples/pom.xml
+++ b/sca-java-2.x/trunk/samples/pom.xml
@@ -69,6 +69,7 @@
<module>binding-jsonrpc</module>
<module>implementation-java</module>
<module>implementation-script</module>
+ <module>implementation-extension</module>
<!-- contributions - Tuscany samples -->