gecko-dev/grendel/build.xml

190 lines
7.2 KiB
XML

<?xml version="1.0"?>
<!-- ***** BEGIN LICENSE BLOCK *****
- Version: MPL 1.1/GPL 2.0/LGPL 2.1
-
- The contents of this file are subject to the Mozilla Public License Version
- 1.1 (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.mozilla.org/MPL/
-
- Software distributed under the License is distributed on an "AS IS" basis,
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- for the specific language governing rights and limitations under the
- License.
-
- The Original Code is Grendel mail/news client.
-
- The Initial Developer of the Original Code is
- R.J. Keller.
- Portions created by the Initial Developer are Copyright (C) 2005
- the Initial Developer. All Rights Reserved.
-
- Contributor(s):
- Kieran Maclean
-
- Alternatively, the contents of this file may be used under the terms of
- either the GNU General Public License Version 2 or later (the "GPL"), or
- the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- in which case the provisions of the GPL or the LGPL are applicable instead
- of those above. If you wish to allow use of your version of this file only
- under the terms of either the GPL or the LGPL, and not to allow others to
- use your version of this file under the terms of the MPL, indicate your
- decision by deleting the provisions above and replace them with the notice
- and other provisions required by the LGPL or the GPL. If you do not delete
- the provisions above, a recipient may use your version of this file under
- the terms of any one of the MPL, the GPL or the LGPL.
-
- ***** END LICENSE BLOCK ***** -->
<project name="Grendel" default="build" basedir=".">
<property name="version" value="0.1" />
<property name="base" value="."/>
<property name="lib" value="${base}/extlib"/>
<property name="src" value="sources"/>
<property name="dist" value="${base}/dist"/>
<property name="docs" value="${test.base}/docs"/>
<target name="build" description="Compiles Grendel.">
<mkdir dir="${dist}"/>
<antcall target="unzipResources"/>
<echo message="-- Compiling Grendel"/>
<javac srcdir="." destdir="${dist}"
optimize="false"
debug="true"
includes="${src}/**/*.java">
<classpath>
<fileset dir="${lib}" includes="*.jar"/>
</classpath>
</javac>
</target>
<target name="unzipResources">
<echo message="-- Copying resource files..."/>
<copy todir="${dist}">
<fileset dir="${src}/grendel">
<include name="**/*.gif"/>
<include name="**/*.htm*"/>
<include name="**/*.png"/>
<include name="**/*.jpg"/>
<include name="**/*.tmpl"/>
<include name="**/*.xml"/>
<include name="**/*.dtd"/>
<include name="META-INF/*"/>
</fileset>
</copy>
<copy todir="${dist}">
<fileset dir="${src}">
<include name="**/*.properties"/>
</fileset>
</copy>
</target>
<target name="makeJar" description="Pumps all the libs into one big JAR for distribution. Grendel must be built before running this.">
<echo message="-- Creating Grendel JAR file"/>
<jar destfile="${dist}/grendel.jar">
<fileset dir="${dist}">
<include name="**/*.*"/>
</fileset>
<manifest>
<attribute name="Main-Class" value="grendel.Main"/>
</manifest>
</jar>
<echo message="-- Creating grendel.zip"/>
<zip destfile="${dist}/grendel.zip">
<fileset dir="${src}/grendel">
<include name="**/*.gif"/>
<include name="**/*.png"/>
<include name="**/*.jpg"/>
<include name="**/*.tmpl"/>
<include name="**/*.xml"/>
<include name="**/*.dtd"/>
</fileset>
<fileset dir="${src}">
<include name="**/*.properties"/>
</fileset>
</zip>
</target>
<target name="run" description="Runs Grendel after compiling.">
<java classname="grendel.Main" fork="true" dir="${dist}">
<classpath>
<fileset dir="${lib}" includes="*.jar"/>
<path path="${dist}" />
</classpath>
</java>
</target>
<target name="clean" description="Cleans up generated class files.">
<delete dir="${dist}"/>
<delete file="${dist}/grendel.jar"/>
</target>
<target name="javadoc" description="Generate JavaDoc API information">
<mkdir dir="docs"/>
<javadoc destdir="${docs}" classpath="${dist}" private="true" windowtitle="Grendel" author="true" version="true" use="true" linksource="true" >
<doctitle>Grendel JavaDoc</doctitle>
<classpath>
<path path="${dist}" />
</classpath>
<packageset dir="${src}">
<include name="**" />
</packageset>
</javadoc>
</target>
<target name="-test-init" description="Setup for JUnit Tests">
<property name="test.base" value="tests"/>
<property name="test.reports" value="${test.base}/report/"/>
<property name="test.reports.style" value="${test.base}/style/"/>
<property name="test.src" value="${test.base}/src"/>
<property name="test.dist" value="${test.base}/dist"/>
<path id="classpath.test">
<pathelement location="${test.base}/junit.jar" />
<pathelement path="${test.dist}" />
<pathelement path="${dist}" />
<fileset dir="${lib}" includes="*.jar"/>
</path>
<property environment="classpath" classpathref="classpath.test"/>
</target>
<target name="test-compile" depends="-test-init">
<mkdir dir="${test.dist}" />
<delete>
<fileset dir="${test.dist}" includes="**/*.class" />
</delete>
<javac srcdir="${test.src}" destdir="${test.dist}" debug="true">
<classpath refid="classpath.test"/>
</javac>
</target>
<target name="test" depends="-test-init,test-compile,test-run,test-report" description="Run JUnit Tests"/>
<target name="test-run" depends="-test-init">
<junit fork="yes" printsummary="no" haltonfailure="no">
<classpath refid="classpath.test" />
<formatter type="plain" usefile="false" />
<formatter type="xml" />
<batchtest fork="yes" todir="${test.reports}">
<fileset dir="${test.src}">
<include name="**/**/*.java" />
</fileset>
</batchtest>
</junit>
</target>
<target name="test-report" depends="-test-init">
<junitreport todir="${test.reports}">
<fileset dir="${test.reports}">
<include name="TEST-*.xml" />
</fileset>
<report todir="${test.reports}" styledir="${test.reports.style}"/>
</junitreport>
</target>
</project>