1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
<project xmlns:ivy="antlib:org.apache.ivy.ant" name="org.dynalang.mop.jython" basedir=".">
<!--
Copyright 2007 Attila Szegedi
Licensed 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.
-->
<!-- $Id: build.xml 74 2007-04-02 09:34:33Z szegedia $ -->
<property name="project.name" value="JVM Dynamic Languages Metaobject Protocol"/>
<property name="artifact.name" value="dynalang-mop-jython"/>
<property name="revision" value="0.4"/>
<property name="build.dir" location="build"/>
<property name="ivy.settings.dir" value="../ivy" />
<property file="${ivy.settings.dir}/ivysettings.properties" />
<ivy:settings file="${ivy.settings.dir}/ivysettings.xml" />
<target name="clean">
<mkdir dir="${build.dir}"/>
<delete dir="${build.dir}"/>
</target>
<target name="resolve">
<ivy:retrieve pattern="build/lib/[conf]/[artifact].[ext]"/>
</target>
<path id="compile.classpath">
<fileset dir="build/lib/default"/>
</path>
<target name="compile" depends="resolve">
<property name="classes.dir" location="${build.dir}/classes"/>
<mkdir dir="${classes.dir}"/>
<javac srcdir="src" destdir="${classes.dir}" deprecation="off"
debug="on" optimize="off" target="1.5" source="1.5"
classpathref="compile.classpath"/>
<copy toDir="${classes.dir}">
<fileset dir="src"
excludes="**/CVS/**,**/*.bak,**/*.java,**/*.jj,**/package.html,overview.html"/>
</copy>
</target>
<target name="jar" depends="compile">
<property name="jarfile" location="build/${artifact.name}-${revision}.jar"/>
<jar destfile="${jarfile}" basedir="${classes.dir}">
<manifest>
<attribute name="Implementation-Vendor" value="Attila Szegedi"/>
<attribute name="Implementation-Version" value="${revision}"/>
<attribute name="Implementation-Title" value="${project.name}"/>
<attribute name="Implementation-URL" value="http://sourceforge.net/projects/dynalang"/>
</manifest>
</jar>
</target>
<target name="publish" depends="jar">
<property name="revision" value="${revision}"/>
<delete file="${build.dir}/ivy-${revision}.xml"/>
<ivy:publish artifactspattern="${build.dir}/[artifact]-[revision].[ext]"
resolver="projects"
pubrevision="${revision}"
status="release"
overwrite="true"
/>
</target>
<target depends="" name="doc">
<mkdir dir="${build.dir}/doc/javadoc"/>
<delete includeEmptyDirs="yes">
<fileset dir="${build.dir}/doc/javadoc" includes="**/*" />
</delete>
<javadoc author="true"
destdir="${build.dir}/doc/javadoc"
doctitle="${project.name} ${revision}"
packagenames="org.dynalang.*"
sourcepath="src"
version="true"
windowtitle="${project.name} ${revision} API"
overview="src/overview.html"
use="true">
</javadoc>
<copy todir="${build.dir}/doc">
<fileset dir="src/doc" includes="**/*"/>
</copy>
</target>
<target name="coverage-instrument" depends="compile">
<property name="coverage.dir" location="${build.dir}/coverage"/>
<property name="coverage.classes.dir" location="${build.dir}/coverage/classes"/>
<mkdir dir="${coverage.classes.dir}"/>
<path id="emma.lib">
<pathelement location="build/lib/test/emma.jar" />
<pathelement location="build/lib/test/emma_ant.jar" />
</path>
<taskdef resource="emma_ant.properties" classpathref="emma.lib" />
<property name="coverage.instrumentationfile" location="${coverage.dir}/instrumentation"/>
<emma enabled="true">
<instr
instrpath="${classes.dir}" outdir="${coverage.classes.dir}"
outfile="${coverage.instrumentationfile}" mode="copy"/>
</emma>
<copy todir="${coverage.classes.dir}">
<fileset dir="src" excludes="**/*.java"/>
</copy>
<copy todir="${coverage.classes.dir}">
<fileset dir="${classes.dir}"/>
</copy>
<property name="coverage.outfile" location="${coverage.dir}/coverage"/>
</target>
<target name="test-compile" depends="compile">
<property name="test.classes.dir" location="${build.dir}/test/classes"/>
<mkdir dir="${test.classes.dir}"/>
<javac srcdir="testsrc" destdir="${test.classes.dir}" deprecation="off"
debug="on" optimize="off" target="1.5" source="1.5">
<classpath>
<pathelement path="${classes.dir}" />
<pathelement path="build/lib/test/junit.jar" />
</classpath>
</javac>
<copy toDir="${test.classes.dir}">
<fileset dir="testsrc"
excludes="**/CVS/**,**/*.bak,**/*.java,**/*.jj,**/package.html"/>
</copy>
</target>
<target name="test-run" depends="test-compile, coverage-instrument">
<junit printsummary="on" fork="true" forkmode="once"
showoutput="true" haltonerror="true" haltonfailure="true">
<sysproperty key="emma.coverage.out.file" value="${coverage.outfile}"/>
<classpath>
<pathelement path="${coverage.classes.dir}" />
<pathelement path="${test.classes.dir}" />
<pathelement path="build/lib/test/emma.jar"/>
<pathelement path="build/lib/test/junit.jar"/>
</classpath>
<batchtest todir="build/test">
<fileset dir="${test.classes.dir}" includes="**/Test*.class"/>
</batchtest>
<formatter type="plain" usefile="false" />
<formatter type="xml"/>
</junit>
<mkdir dir="build/test/report"/>
<junitreport todir="build/test">
<fileset dir="build/test" includes="TEST-*.xml"/>
<report todir="build/test/report"/>
</junitreport>
</target>
<target name="test" depends="test-run">
<property name="coverage.report.dir" location="${build.dir}/coverage/report"/>
<mkdir dir="${coverage.report.dir}"/>
<delete dir="${coverage.report.dir}"/>
<mkdir dir="${coverage.report.dir}"/>
<emma enabled="true">
<report>
<fileset dir="${basedir}">
<include name="build/coverage/instrumentation"/>
<include name="build/coverage/coverage"/>
</fileset>
<sourcepath>
<dirset dir="${basedir}">
<include name="src"/>
</dirset>
</sourcepath>
<html outfile="${coverage.report.dir}/index.html"/>
</report>
</emma>
</target>
<target name="dist" depends="clean,test-run,jar,doc">
<mkdir dir="build/${artifact.name}-${revision}"/>
<copy todir="build/${artifact.name}-${revision}">
<fileset dir="." excludes="build/**/*"/>
</copy>
<copy todir="build/${artifact.name}-${revision}">
<fileset dir="."
includes="
build/doc/**/*
build/${artifact.name}-${revision}.jar"
/>
</copy>
<tar destfile="build/${artifact.name}-${revision}.tgz"
compression="gzip" basedir="build"
includes="${artifact.name}-${revision}/**/*"/>
</target>
</project>
|