scenarium-logger/build.xml

135 lines
6.5 KiB
XML

<?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="scenarium-logger">
<property environment="env"/>
<property name="beanmanager.location" value="../beanmanager"/>
<property name="plugin-manager.location" value="../plugin-manager"/>
<property name="scenarium-base.location" value="../scenarium-base"/>
<property name="scenarium-core.location" value="../scenarium/core"/>
<property name="scenarium-river.location" value="../scenarium-river"/>
<property name="scenarium-run.location" value="../scenarium-run"/>
<property name="junit.output.dir" value="junit"/>
<property name="debuglevel" value="source,lines,vars"/>
<property name="target" value="14"/>
<property name="source" value="14"/>
<path id="JUnit 5.libraryclasspath">
<pathelement location="${user.home}/junit-platform-console-standalone-1.5.2.jar"/>
</path>
<path id="scenarium-logger.classpath">
<pathelement location="bin/"/>
<pathelement location="test/bin"/>
<path refid="JUnit 5.libraryclasspath"/>
<pathelement location="test/lib/junit-toolbox-2.4.jar"/>
</path>
<path id="run.TestBasicLog.classpath">
<path refid="scenarium-logger.classpath"/>
<path refid="JUnit 5.libraryclasspath"/>
<pathelement location="test/lib/junit-toolbox-2.4.jar"/>
</path>
<target name="init">
<mkdir dir="bin/"/>
<mkdir dir="test/bin"/>
<copy includeemptydirs="false" todir="bin/">
<fileset dir="src">
<exclude name="**/*.launch"/>
<exclude name="**/*.java"/>
</fileset>
</copy>
<copy includeemptydirs="false" todir="test/bin">
<fileset dir="test/src">
<exclude name="**/*.launch"/>
<exclude name="**/*.java"/>
</fileset>
</copy>
</target>
<target name="clean">
<delete dir="bin/"/>
<delete dir="test/bin"/>
</target>
<target depends="clean" name="cleanall"/>
<target depends="build-subprojects,build-project" name="build"/>
<target name="build-subprojects"/>
<target depends="init" name="build-project">
<echo message="${ant.project.name}: ${ant.file}"/>
<javac debug="true" debuglevel="${debuglevel}" destdir="bin/" includeantruntime="false" source="${source}" target="${target}">
<src path="src"/>
<classpath refid="scenarium-logger.classpath"/>
</javac>
<javac debug="true" debuglevel="${debuglevel}" destdir="test/bin" includeantruntime="false" source="${source}" target="${target}">
<src path="test/src"/>
<classpath refid="scenarium-logger.classpath"/>
</javac>
</target>
<target description="Build all projects which reference this project. Useful to propagate changes." name="build-refprojects">
<ant antfile="build.xml" dir="${beanmanager.location}" inheritAll="false" target="clean"/>
<ant antfile="build.xml" dir="${beanmanager.location}" inheritAll="false" target="build">
<propertyset>
<propertyref name="build.compiler"/>
</propertyset>
</ant>
<ant antfile="build.xml" dir="${plugin-manager.location}" inheritAll="false" target="clean"/>
<ant antfile="build.xml" dir="${plugin-manager.location}" inheritAll="false" target="build">
<propertyset>
<propertyref name="build.compiler"/>
</propertyset>
</ant>
<ant antfile="build.xml" dir="${scenarium-base.location}" inheritAll="false" target="clean"/>
<ant antfile="build.xml" dir="${scenarium-base.location}" inheritAll="false" target="build">
<propertyset>
<propertyref name="build.compiler"/>
</propertyset>
</ant>
<ant antfile="build.xml" dir="${scenarium-core.location}" inheritAll="false" target="clean"/>
<ant antfile="build.xml" dir="${scenarium-core.location}" inheritAll="false" target="build">
<propertyset>
<propertyref name="build.compiler"/>
</propertyset>
</ant>
<ant antfile="build.xml" dir="${scenarium-river.location}" inheritAll="false" target="clean"/>
<ant antfile="build.xml" dir="${scenarium-river.location}" inheritAll="false" target="build">
<propertyset>
<propertyref name="build.compiler"/>
</propertyset>
</ant>
<ant antfile="build.xml" dir="${scenarium-run.location}" inheritAll="false" target="clean"/>
<ant antfile="build.xml" dir="${scenarium-run.location}" inheritAll="false" target="build">
<propertyset>
<propertyref name="build.compiler"/>
</propertyset>
</ant>
</target>
<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>
<target name="TestBasicLog">
<mkdir dir="${junit.output.dir}"/>
<junit fork="yes" printsummary="withOutAndErr">
<formatter type="xml"/>
<test name="test.scenarium.logger.TestBasicLog" todir="${junit.output.dir}"/>
<jvmarg line="-ea"/>
<classpath refid="run.TestBasicLog.classpath"/>
</junit>
</target>
<target name="junitreport">
<junitreport todir="${junit.output.dir}">
<fileset dir="${junit.output.dir}">
<include name="TEST-*.xml"/>
</fileset>
<report format="frames" todir="${junit.output.dir}"/>
</junitreport>
</target>
</project>