Added build.xml jk_new_structure
authorvranyj1
Wed, 22 Aug 2012 13:42:17 +0000
branchjk_new_structure
changeset 1654 5c5e2a5bbe06
parent 1653 9837406cbc65
child 1655 340244702a94
Added build.xml
src/examples/java/build.xml
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/examples/java/build.xml	Wed Aug 22 13:42:17 2012 +0000
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- WARNING: Eclipse auto-generated file.
+              Any modifications will be overwritten.
+              To include a user specific buildfile here, simply create one in the same
+              directory with the processing instruction <?eclipse.ant.import?>
+              as the first entry and export the buildfile again. -->
+<project basedir="." default="build" name="jv2 - stx:libjava|examples">
+    <property environment="env"/>
+    <property name="jv2 - stx:libjava.location" value="../../java"/>
+    <property name="ECLIPSE_HOME" value="../../../../../../../../../../../../../usr/lib/eclipse"/>
+    <property name="debuglevel" value="source,lines,vars"/>
+    <property name="target" value="1.6"/>
+    <property name="source" value="1.6"/>
+    <path id="Groovy DSL Support.libraryclasspath">
+        <pathelement location="../../../../../../../../../../../.groovy/greclipse/global_dsld_support"/>
+        <pathelement location="../../../../../../../../../../../.eclipse/org.eclipse.platform_3.7.0_155965261/plugins/org.codehaus.groovy_1.8.6.xx-20120703-1400-e37-RELEASE/plugin_dsld_support/"/>
+    </path>
+    <path id="jv2 - stx:libjava.classpath">
+        <pathelement location="${jv2 - stx:libjava.location}/bin"/>
+        <pathelement location="${jv2 - stx:libjava.location}/libs/groovy-all-1.8.2.jar"/>
+        <pathelement location="${jv2 - stx:libjava.location}/libs/junit4-4.8.2.jar"/>
+    </path>
+    <path id="jv2 - stx:libjava|examples.classpath">
+        <pathelement location="bin"/>
+        <path refid="Groovy DSL Support.libraryclasspath"/>
+        <path refid="jv2 - stx:libjava.classpath"/>
+        <pathelement location="${jv2 - stx:libjava.location}/libs/groovy-all-1.8.2.jar"/>
+        <pathelement location="${jv2 - stx:libjava.location}/libs/junit4-4.8.2.jar"/>
+    </path>
+    <target name="init">
+        <mkdir dir="bin"/>
+        <copy includeemptydirs="false" todir="bin">
+            <fileset dir="src">
+                <exclude name="**/*.java"/>
+            </fileset>
+        </copy>
+    </target>
+    <target name="clean">
+        <delete dir="bin"/>
+    </target>
+    <target depends="clean" name="cleanall">
+        <ant antfile="build.xml" dir="${jv2 - stx:libjava.location}" inheritAll="false" target="clean"/>
+    </target>
+    <target depends="build-subprojects,build-project" name="build"/>
+    <target name="build-subprojects">
+        <ant antfile="build.xml" dir="${jv2 - stx:libjava.location}" inheritAll="false" target="build-project">
+            <propertyset>
+                <propertyref name="build.compiler"/>
+            </propertyset>
+        </ant>
+    </target>
+    <target depends="init" name="build-project">
+        <echo message="${ant.project.name}: ${ant.file}"/>
+        <javac debug="true" debuglevel="${debuglevel}" destdir="bin" source="${source}" target="${target}">
+            <src path="src"/>
+            <classpath refid="jv2 - stx:libjava|examples.classpath"/>
+        </javac>
+    </target>
+    <target description="Build all projects which reference this project. Useful to propagate changes." name="build-refprojects"/>
+    <target description="copy Eclipse compiler jars to ant lib directory" name="init-eclipse-compiler">
+        <copy todir="${ant.library.dir}">
+            <fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar"/>
+        </copy>
+        <unzip dest="${ant.library.dir}">
+            <patternset includes="jdtCompilerAdapter.jar"/>
+            <fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar"/>
+        </unzip>
+    </target>
+    <target description="compile project with Eclipse compiler" name="build-eclipse-compiler">
+        <property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
+        <antcall target="build"/>
+    </target>
+</project>