blob: 5c87733aca9bb5de2f0b99a6d315f14eabed5698 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8" ?>
<!--
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="etch-java-runtime" basedir="." default="help">
<description>Etch-to-Java runtime binding implementation</description>
<property name="Etch.basedir" location="${basedir}/../.." />
<import file="${Etch.basedir}/build-support/etch.includes.xml" />
<!-- Static properties of the sub-project -->
<property name="proj" location="${Etch.basedir}/binding-java/runtime" />
<property name="target" location="${proj}/target" />
<property name="src" location="${proj}/src" />
<property name="generatedSrc" location="${target}/generated-sources" />
<property name="classesDirectory" location="${target}/classes" />
<property name="resourcesDirectory" location="${target}/resources" />
<property name="testResultsDirectory" location="${target}/test-results" />
<!-- MACRO: init-target -->
<macrodef name="init-target" >
<sequential>
<delete dir="${classesDirectory}" failonerror="false" quiet="true" />
<delete dir="${resourcesDirectory}" failonerror="false" quiet="true" />
<mkdir dir="${classesDirectory}" />
<mkdir dir="${classesDirectory}/main" />
<mkdir dir="${classesDirectory}/test" />
<mkdir dir="${resourcesDirectory}" />
</sequential>
</macrodef>
<!-- MACRO: compile-sources -->
<macrodef name="compile-sources" >
<attribute name="support" default="${Etch.support}" />
<sequential>
<javac debug="${Etch.javac.debug}"
target="1.5"
optimize="${Etch.javac.optimize}"
destdir="${classesDirectory}/main" >
<src path="${src}/main/java" />
<exclude name="**/.svn/**" />
<classpath refid="Etch.dependencies.jar.paths" />
<classpath>
<pathelement location="@{support}/lib/${etch-util.jar}" />
</classpath>
</javac>
<javac debug="${Etch.javac.debug}"
target="1.5"
optimize="${Etch.javac.optimize}"
destdir="${classesDirectory}/test" >
<src path="${src}/test/java" />
<exclude name="**/.svn/**" />
<classpath refid="Etch.dependencies.jar.paths" />
<classpath>
<pathelement location="${classesDirectory}/main" />
<pathelement location="@{support}/lib/${etch-util.jar}" />
</classpath>
</javac>
</sequential>
</macrodef>
<!-- MACRO: bundle-jars -->
<macrodef name="bundle-jars" >
<attribute name="dist" default="${Etch.dist}" />
<sequential>
<mkdir dir="@{dist}/lib" />
<!-- CREATE jars -->
<!-- Package up etch-java-runtime jar -->
<jar jarfile="@{dist}/lib/${etch-java-runtime.jar}" >
<manifest>
<attribute name="Copyright" value="${Etch.copyrightNotice}" />
<attribute name="Version" value="${Etch.version}" />
<attribute name="LongVersion" value="${Etch.longversion}" />
<attribute name="Build-Tag" value="${Etch.buildTag}" />
<attribute name="SVN-Revision" value="${Etch.runtime.revisionNumber}" />
<!-- <attribute name="Class-Path" value="${etch-util.jar}" /> -->
</manifest>
<metainf dir="${Etch.basedir}" >
<include name="NOTICE.txt" />
<include name="LICENSE.txt" />
</metainf>
<fileset dir="${classesDirectory}/main">
<include name="etch/bindings/**" />
</fileset>
</jar>
<!-- placeholder -->
<jar jarfile="@{dist}/lib/${etch-util.jar}" update="true" filesetmanifest="merge">
<manifest>
<attribute name="Version" value="${Etch.version}" />
</manifest>
</jar>
<!-- CREATE source archives -->
<!-- package up etch-java-runtime src -->
<zip destfile="@{dist}/lib/${etch-java-runtime-src.zip}" >
<fileset dir="${src}/main/java" >
<include name="etch/bindings/**/*.java" />
</fileset>
</zip>
<mkdir dir="${target}/empty-dir" />
<zip destfile="@{dist}/lib/${etch-util-src.zip}" update="true" whenempty="create" basedir="${target}/empty-dir"/>
</sequential>
</macrodef>
<!-- MACRO: update-jars -->
<macrodef name="update-jars" >
<attribute name="dist" default="${Etch.dist}" />
<attribute name="support" default="${Etch.support}" />
<sequential>
<!-- repackage .jar -->
<mkdir dir="@{dist}/lib" />
<delete dir="${target}/tmp-runtime" quiet="true" />
<mkdir dir="${target}/tmp-runtime" />
<unjar src="@{support}/lib/${etch-util.jar}" dest="${target}/tmp-runtime" />
<unjar src="@{support}/lib/${etch-java-runtime.jar}" dest="${target}/tmp-runtime" />
<jar jarfile="@{dist}/lib/${etch-java-runtime.jar}" update="true" filesetmanifest="merge" >
<fileset dir="${target}/tmp-runtime" />
</jar>
<!-- repackage .zip src -->
<mkdir dir="@{dist}/lib" />
<delete dir="${target}/tmp-runtime-src" quiet="true" />
<mkdir dir="${target}/tmp-runtime-src" />
<unzip src="@{support}/lib/${etch-util-src.zip}" dest="${target}/tmp-runtime-src" />
<unzip src="@{support}/lib/${etch-java-runtime-src.zip}" dest="${target}/tmp-runtime-src" />
<zip destfile="@{dist}/lib/${etch-java-runtime-src.zip}" >
<fileset dir="${target}/tmp-runtime-src" />
</zip>
</sequential>
</macrodef>
<!-- INIT TARGET -->
<!-- Modify this target to define project specific properties that can only be set at runtime -->
<target name="do-init">
<delete dir="${target}" failonerror="false" quiet="true" />
<mkdir dir="${target}" />
<mkdir dir="${generatedSrc}" />
<mkdir dir="${classesDirectory}" />
<mkdir dir="${resourcesDirectory}" />
<mkdir dir="${testResultsDirectory}" />
</target>
<!-- CLEAN TARGET -->
<target name="do-clean">
<delete dir="${target}" />
</target>
<!-- BUILD TARGET -->
<target name="generate-sources" >
</target>
<target name="compile-for-dist" >
<!-- Initialize target directories -->
<init-target />
<!-- Compile Source -->
<compile-sources support="${Etch.support}" />
<!-- Bundle Jars -->
<bundle-jars dist="${Etch.support}" />
<!-- Update Jars -->
<update-jars dist="${Etch.dist}" support="${Etch.support}" />
</target>
<target name="compile-for-clover" if="Clover.enabled" >
<echo message="Rebuilding with clover" />
<!-- initialize-clover -->
<initialize-clover suffix="etchjavabinding" >
<fileset dir="${src}/main/java">
<exclude name="**/.svn/**" />
<include name="**/*.java" />
</fileset>
<testsources dir="${src}/test/java">
<exclude name="**/.svn/**" />
<include name="**/*.java" />
</testsources>
</initialize-clover>
<!-- Initialize target directories -->
<init-target />
<!-- Compile Source -->
<compile-sources support="${Etch.support}" />
<!-- Bundle Jars -->
<bundle-jars dist="${Etch.clover-support}" />
<!-- Update Jars -->
<update-jars dist="${Etch.clover-dist}" support="${Etch.clover-support}" />
</target>
<target name="do-build" depends="generate-sources,compile-for-dist,compile-for-clover" />
<!-- TEST TARGET -->
<target name="do-test">
<!-- Run Unit Tests -->
<junit printsummary="yes" haltonfailure="no" dir="${classesDirectory}"
errorProperty="build.tests.fail" failureProperty="build.tests.fail">
<classpath>
<pathelement location="${classesDirectory}/main" />
<pathelement location="${classesDirectory}/test" />
<pathelement location="${Etch.dependency.junit.jar}"/>
<!-- TODO: remove if clover not available -->
<pathelement location="${Etch.SUPPORT}/lib/${etch-util.jar}" />
<pathelement location="${Etch.dependency.clover.jar}"/>
</classpath>
<formatter type="xml"/>
<batchtest fork="true" todir="${testResultsDirectory}">
<fileset dir="${src}/test/java">
<exclude name="**/.svn/**" />
<include name="**/*.java" />
</fileset>
</batchtest>
</junit>
</target>
<!-- POSTBUILD TARGET -->
<target name="do-postbuild">
</target>
<target name="do-publish" if="build.tests.fail">
<!-- Set flag file if any tests failed -->
<touch file="${Etch.runtime.tests.fail}"/>
</target>
</project>