mailiverse/java/ext/json/build.xml

98 lines
5.5 KiB
XML
Raw Normal View History

<?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="Mailiverse.Ext.Json">
<property environment="env"/>
<property name="Mailiverse.App.Tools.location" value="../../app/tools"/>
<property name="Mailiverse.Core.location" value="../../core"/>
<property name="Mailiverse.Mail-WebServer.location" value="../../webserver"/>
<property name="ECLIPSE_HOME" value="../../../../../Desktop/eclipse"/>
<property name="debuglevel" value="source,lines,vars"/>
<property name="target" value="1.6"/>
<property name="source" value="1.6"/>
<path id="EAR Libraries.libraryclasspath"/>
<path id="Apache Tomcat v7.0 [Apache Tomcat v7.0].libraryclasspath">
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/annotations-api.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/catalina-ant.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/catalina-ha.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/catalina-tribes.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/catalina.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/ecj-4.2.1.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/el-api.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/jasper-el.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/jasper.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/jsp-api.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/servlet-api.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/tomcat-api.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/tomcat-coyote.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/tomcat-dbcp.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/tomcat-i18n-es.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/tomcat-i18n-fr.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/tomcat-i18n-ja.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/tomcat-jdbc.jar"/>
<pathelement location="../../../ext/apache-tomcat-7.0.37/lib/tomcat-util.jar"/>
</path>
<path id="Mailiverse.Ext.Json.classpath">
<pathelement location="bin"/>
<path refid="EAR Libraries.libraryclasspath"/>
<path refid="Apache Tomcat v7.0 [Apache Tomcat v7.0].libraryclasspath"/>
</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"/>
<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="Mailiverse.Ext.Json.classpath"/>
</javac>
</target>
<target description="Build all projects which reference this project. Useful to propagate changes." name="build-refprojects">
<ant antfile="build.xml" dir="${Mailiverse.App.Tools.location}" inheritAll="false" target="clean"/>
<ant antfile="build.xml" dir="${Mailiverse.App.Tools.location}" inheritAll="false" target="build">
<propertyset>
<propertyref name="build.compiler"/>
</propertyset>
</ant>
<ant antfile="build.xml" dir="${Mailiverse.Core.location}" inheritAll="false" target="clean"/>
<ant antfile="build.xml" dir="${Mailiverse.Core.location}" inheritAll="false" target="build">
<propertyset>
<propertyref name="build.compiler"/>
</propertyset>
</ant>
<ant antfile="build.xml" dir="${Mailiverse.Mail-WebServer.location}" inheritAll="false" target="clean"/>
<ant antfile="build.xml" dir="${Mailiverse.Mail-WebServer.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>
</project>