Lines Matching full:build

3     <property name="version" value="SNAPSHOT" description="Version number to use in build files"/>
4 …<property name="haltonfailure" value="true" description="Whether to halt the build if the tests fa…
5 <property name="debug" value="true" description="Whether to build with debug information"/>
7 … <tstamp><format property="build.timestamp" pattern="yyyy-MM-dd HH:mm:ss" timezone="GMT"/></tstamp>
11 …<target name="all" depends="clean, bigjar, javadoc" description="Performs clean build, runs tests …
14 <delete dir="build"/>
17 <target name="api" description="Build Hamcrest APIs">
25 <target name="generator" depends="api" description="Build code generator tool">
26 …<path id="cp-hamcrest-generator-main" path="lib/generator/qdox-2.0-M2.jar;build/hamcrest-api-${ver…
34 …<copy file="build/hamcrest-generator-${version}.jar" tofile="build/hamcrest-generator-${version}-n…
35 <jarjar jarfile="build/hamcrest-generator-${version}.jar">
36 <zipfileset src="build/hamcrest-generator-${version}-nodep.jar"/>
42 <target name="core" depends="generator" description="Build core Hamcrest library">
43 <path id="cp-hamcrest-core-main" path="build/hamcrest-api-${version}.jar"/>
51 <target name="library" depends="core" description="Build library of matchers">
52 …<path id="cp-hamcrest-library-main" path="build/hamcrest-api-${version}.jar;build/hamcrest-core-${…
53 <path id="cp-hamcrest-library-test" path="build/hamcrest-core-${version}-tests.jar"/>
60 … <target name="integration" depends="library" description="Build integration with external tools">
62 <fileset file="build/hamcrest-api-${version}.jar"/>
63 <fileset file="build/hamcrest-core-${version}.jar"/>
64 <fileset file="build/hamcrest-library-${version}.jar"/>
67 <path id="cp-hamcrest-integration-test" path="build/hamcrest-core-${version}-tests.jar"/>
73 …<target name="examples" depends="core, library, integration" description="Build and run unit tests…
75 <fileset file="build/hamcrest-api-${version}.jar"/>
76 <fileset file="build/hamcrest-core-${version}.jar"/>
77 <fileset file="build/hamcrest-library-${version}.jar"/>
78 <fileset file="build/hamcrest-integration-${version}.jar"/>
85 …<target name="bigjar" depends="core,library,integration,generator" description="Build composite ja…
87 <copy todir="build/temp/hamcrest-core-${version}.jar.contents">
88 <fileset dir="build/temp/hamcrest-api-${version}.jar.contents"/>
90 <copy todir="build/temp/hamcrest-core-${version}-sources.jar.contents">
91 <fileset dir="build/temp/hamcrest-api-${version}-sources.jar.contents"/>
96 <copy todir="build/temp/hamcrest-all-${version}.jar.contents">
97 <fileset dir="build/temp/hamcrest-core-${version}.jar.contents"/>
98 <fileset dir="build/temp/hamcrest-library-${version}.jar.contents"/>
99 <fileset dir="build/temp/hamcrest-integration-${version}.jar.contents"/>
100 <fileset dir="build/temp/hamcrest-generator-${version}.jar.contents"/>
102 <copy todir="build/temp/hamcrest-all-${version}-sources.jar.contents">
103 <fileset dir="build/temp/hamcrest-core-${version}-sources.jar.contents"/>
104 <fileset dir="build/temp/hamcrest-library-${version}-sources.jar.contents"/>
105 <fileset dir="build/temp/hamcrest-integration-${version}-sources.jar.contents"/>
106 <fileset dir="build/temp/hamcrest-generator-${version}-sources.jar.contents"/>
117 <target name="javadoc" depends="bigjar" description="build javadoc jars">
126 <copy todir="build">
145 <mkdir dir="build/temp/@{modulename}-${version}.jar.manifest"/>
146 <manifest file="build/temp/@{modulename}-${version}.jar.manifest/MANIFEST.MF">
151 <attribute name="Built-Date" value="${build.timestamp}"/>
164 <path path="build/temp/@{modulename}-${version}.jar.contents"/>
175 <mkdir dir="build/temp/@{jarname}-sources.jar.contents"/>
176 <copy failonerror="false" todir="build/temp/@{jarname}-sources.jar.contents">
179 <mkdir dir="build/temp/@{jarname}.jar.contents"/>
180 <javac srcdir="build/temp/@{jarname}-sources.jar.contents"
181 destdir="build/temp/@{jarname}.jar.contents"
202 …<copy file="LICENSE.txt" todir="build/temp/@{modulename}-${version}@{suffix}.jar.contents/META-INF…
203 …<jar jarfile="build/@{modulename}-${version}@{suffix}.jar" manifest="build/temp/@{modulename}-${ve…
204 <fileset dir="build/temp/@{modulename}-${version}@{suffix}.jar.contents"/>
215 <mkdir dir="build/temp/@{modulename}/generated-code"/>
217 <classpath path="build/hamcrest-generator-${version}.jar"/>
219 <classpath path="build/temp/@{modulename}-${version}.jar.contents"/>
223 <arg value="build/temp/@{modulename}/generated-code"/>
226 <copy todir="build/temp/@{modulename}-${version}-sources.jar.contents">
227 <fileset dir="build/temp/@{modulename}/generated-code"/>
236 <mkdir dir="build/temp/@{modulename}/test-wrk"/>
237 …<junit printsummary="no" forkmode="once" tempdir="build/temp/@{modulename}/test-wrk" haltonfailure…
240 <classpath path="build/@{modulename}-${version}-tests.jar"/>
241 <batchtest fork="yes" todir="${build.dir}/testreport">
242 <zipfileset src="build/@{modulename}-${version}-tests.jar">
251 <macrodef name="javadoc-module" description="Generate javadoc for a module and build a Jar">
254 …<javadoc packagenames="org.hamcrest.*" sourcepath="build/temp/@{modulename}-${version}-sources.jar…
255 … destdir="build/temp/@{modulename}-${version}-javadoc.jar.contents" author="true" version="true"
277 <jar destfile="build/maven-bundle-@{modulename}.jar">
278 <fileset dir="build"><include name="@{modulename}-${version}*"/></fileset>
286 <exec executable="gpg" dir="build"><arg value="-ab"/><arg value="@{target}"/></exec>