build.xml 12.2 KB
Newer Older
1 2
<project name="h2" default="all" basedir=".">

3
	<property file="ant-build.properties" />
4 5 6 7 8

	<path id="benchmark.drivers.path">
		<!-- jar files required by the benchmark -->
		<pathelement location="bin"/>
		<pathelement path="${java.class.path}/"/>
9
		<fileset dir="${benchmark.drivers.dir}">
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
			<include name="**/*.jar"/>
		</fileset>
	</path>

	<target name="all" depends="jar,javadoc,docs">
		<delete includeemptydirs="true" verbose="true">
			<fileset dir="bin" includes="**/*.txt"/>
			<fileset dir="bin" includes="h2-test.exe"/>
			<fileset dir="bin" includes="systray4j.jar"/>
			<fileset dir="bin" includes="org/**/*"/>
			<fileset dir="bin" includes="org"/>
			<fileset dir="bin" includes="snoozesoft/**/*"/>
			<fileset dir="bin" includes="snoozesoft"/>
			<fileset dir="bin" includes="META-INF/**/*"/>
			<fileset dir="bin" includes="META-INF"/>
			<fileset dir="docs/html" includes="onePage.html"/>
		</delete>
	</target>

	<target name="benchmark" depends="compile">
		<java fork="true" classname="org.h2.test.bench.TestPerformance" classpathref="benchmark.drivers.path" dir="." maxmemory="128m"><arg line="-init -db 1"/></java>
		<java fork="true" classname="org.h2.test.bench.TestPerformance" classpathref="benchmark.drivers.path" dir="." maxmemory="128m"><arg line="-db 2"/></java>
		<java fork="true" classname="org.h2.test.bench.TestPerformance" classpathref="benchmark.drivers.path" dir="." maxmemory="128m"><arg line="-db 3 -out pe.html"/></java>
		<java fork="true" classname="org.h2.test.bench.TestPerformance" classpathref="benchmark.drivers.path" dir="." maxmemory="128m"><arg line="-init -db 4"/></java>
		<java fork="true" classname="org.h2.test.bench.TestPerformance" classpathref="benchmark.drivers.path" dir="." maxmemory="128m"><arg line="-db 5"/></java>
		<java fork="true" classname="org.h2.test.bench.TestPerformance" classpathref="benchmark.drivers.path" dir="." maxmemory="128m"><arg line="-db 6"/></java>
		<java fork="true" classname="org.h2.test.bench.TestPerformance" classpathref="benchmark.drivers.path" dir="." maxmemory="128m"><arg line="-db 7"/></java>
		<java fork="true" classname="org.h2.test.bench.TestPerformance" classpathref="benchmark.drivers.path" dir="." maxmemory="128m"><arg line="-db 8"/></java>
		<java fork="true" classname="org.h2.test.bench.TestPerformance" classpathref="benchmark.drivers.path" dir="." maxmemory="128m"><arg line="-db 9 -out ps.html"/></java>
	</target>

	<target name="clean">
		<mkdir dir="bin"/>
		<mkdir dir="odbc"/>
		<mkdir dir="docs"/>
		<delete includeemptydirs="true">
			<fileset dir="." includes="*.sql,*.txt,*.lock,**/*.db,node*"/>
			<fileset dir="bin" includes="**/*" excludes="**/*.bat,**/*.sh"/>
			<fileset dir="odbc" includes="*.a,*.def,"/>
			<fileset dir="odbc" includes="*.def,h2odbcTest.exe"/>
			<fileset dir="docs" includes="**/*"/>
		</delete>
52
		<delete file="src/tools/org/h2/tools/code/CodeSwitch.class"/>
53 54 55
	</target>

	<target name="codeswitch_prepare">
56
		<javac executable="${javac}" srcdir="src/tools" debug="true" includes="org/h2/tools/code/CodeSwitch.java"/>
57 58 59
	</target>

	<target name="codeswitch_jdk13" depends="codeswitch_prepare">
60
		<propertyfile file="ant-build.properties">
61 62
			<entry key="jdk" value="1.3" />
		</propertyfile>
63 64 65
		<java classname="org.h2.tools.code.CodeSwitch" fork="true" dir="src/tools">
			<arg line="+JDK13 -JDK14 -JDK16 ../main/org/h2"/>
		</java>
66 67 68
	</target>

	<target name="codeswitch_jdk14" depends="codeswitch_prepare">
69
		<propertyfile file="ant-build.properties">
70 71
			<entry key="jdk" value="1.4" />
		</propertyfile>
72 73 74
		<java classname="org.h2.tools.code.CodeSwitch" fork="true" dir="src/tools">
			<arg line="-JDK13 +JDK14 -JDK16 ../main/org/h2"/>
		</java>
75 76 77
	</target>

	<target name="codeswitch_jdk16" depends="codeswitch_prepare">
78
		<propertyfile file="ant-build.properties">
79 80
			<entry key="jdk" value="1.6" />
		</propertyfile>
81 82 83
		<java classname="org.h2.tools.code.CodeSwitch" fork="true" dir="src/tools">
			<arg line="-JDK13 +JDK16 +JDK14 ../main/org/h2"/>
		</java>
84 85 86 87 88
	</target>

	<target name="compileResources" depends="clean">
		<javac target="${jdk}" source="${jdk}" executable="${javac}" srcdir="src/main" destdir="bin" debug="true" includes="org/h2/util/Resources.java"/>
		<java fork="true" classname="org.h2.util.Resources" classpath="bin" dir="."/>
89 90 91
		<delete>
			<fileset dir="bin" includes="org/h2/util/ResourceData.class"/>
		</delete>
92 93 94 95 96 97 98 99 100 101 102 103 104 105
		<javac target="${jdk}" source="${jdk}" executable="${javac}" srcdir="bin" destdir="bin" debug="true" includes="org/h2/util/ResourceData.java"/>
		<delete>
			<fileset dir="bin" includes="org/h2/util/ResourceData.java"/>
		</delete>
	</target>

	<target name="compile" depends="compileResources">
		<javac target="${jdk}" source="${jdk}" executable="${javac}" srcdir="src/main" destdir="bin" debug="true"/>
		<javac target="${jdk}" source="${jdk}" executable="${javac}" srcdir="src/test" destdir="bin" debug="true"/>
		<javac target="${jdk}" source="${jdk}" executable="${javac}" srcdir="src/tools" destdir="bin" debug="true"/>
		<unzip src="src/systray/systray4j.jar" dest="bin"/>
		<javac target="${jdk}" source="${jdk}" executable="${javac}" srcdir="src/systray" destdir="bin" debug="true"/>
		<copy todir="bin" overwrite="true">
			<fileset dir="src/main" includes="META-INF/**/*"/>
106
			<fileset dir="src/main" includes="**/*.png"/>
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
			<fileset dir="src/systray" includes="**/*.ico"/>
			<fileset dir="src/installer" includes="*.bat"/>
			<fileset dir="src/test" includes="**/*.txt"/>
			<fileset dir="src/test" includes="**/*.properties"/>
		</copy>
	</target>

	<target name="createPatch" depends="clean">
		<delete file="../h2-patch.*"/>
		<tar destfile="../h2-patch.tar" basedir="." includes="src/**/*.java,build.xml"/>
		<bzip2 destfile="../h2-patch.tar.bz2" src="../h2-patch.tar"/>
		<delete file="../h2-patch.tar"/>
	</target>

	<target name="docs" depends="clean,javadoc,compile">
		<copy todir="docs">
			<fileset dir="src/docsrc" includes="index.html"/>
			<fileset dir="src/docsrc" includes="html/*" excludes="**/*.jsp" />
		</copy>
		<java classname="org.h2.tools.code.CheckTextFiles" classpath="bin"/>
		<java classname="org.h2.tools.doc.GenerateDoc" classpath="bin">
			<arg line="-in src/docsrc/html -out docs/html"/>
		</java>
		<java classname="org.h2.tools.indexer.Indexer" classpath="bin">
			<arg line="-dir docs -destDir docs/html"/>
		</java>
		<java classname="org.h2.tools.doc.MergeDocs" classpath="bin" />
		<java classname="org.h2.tools.doc.LinkChecker" classpath="bin">
			<arg line="-dir docs"/>
		</java>
137 138
		<java classname="org.h2.tools.doc.XMLChecker" classpath="bin"/>
		<java classname="org.h2.tools.doc.SpellChecker" classpath="bin"/>
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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
	</target>

	<target name="gcj" depends="compileResources">
		<copy todir="bin">
			<fileset dir="src/main"/>
			<fileset dir="src/test"/>
		</copy>
		<replace file="bin/org/h2/util/StringUtils.java" token="//#GCJHACK" value=""/>
		<exec dir="bin" executable="cmd">
			<arg line="/c dir /b /s *.java >files.txt" />
		</exec>
		<exec dir="bin" executable="gcj">
			<arg line="-O1 -c --classpath=. -o db.o @files.txt" />
		</exec>
		<!-- -g0 -fomit-frame-pointer -fno-bounds-check -fno-store-check -O2  -->
		<exec dir="bin" executable="gcj">
			<arg line="--main=org.h2.tools.Server -s -o h2-server.exe db.o" />
		</exec>
		<exec dir="bin" executable="gcj">
			<arg line="--main=org.h2.test.TestAll -s -o h2-test.exe db.o" />
		</exec>
		<delete includeemptydirs="true">
			<fileset dir="bin" includes="**/*.java"/>
			<fileset dir="bin" includes="**/*.o"/>
		</delete>
	</target>
	
	<target name="jar" depends="compile">
		<mkdir dir="bin/META-INF"/>
		<manifest file="bin/META-INF/MANIFEST.MF">
			<!--
			<attribute name="Bundle-Activator" value="org.h2.osgi.Activator"/>
			-->
			<attribute name="Main-Class" value="org.h2.SysTray"/>
		</manifest>
		<jar jarfile="bin/h2.jar" basedir="bin" manifest="bin/META-INF/MANIFEST.MF">
			<include name="**/*.*"/>
			<exclude name="org/h2/tools/code/**/*.*"/>
			<exclude name="org/h2/tools/doc/**/*.*"/>
			<exclude name="org/h2/tools/doclet/**/*.*"/>
			<exclude name="org/h2/tools/indexer/**/*.*"/>
			<exclude name="org/h2/test/**/*.*"/>
			<exclude name="org/h2/samples/**/*.*"/>
			<exclude name="**/*.bat"/>
			<exclude name="**/*.txt"/>
		</jar>
		<copy todir="bin" file="src/systray/systray4j.dll"/>
	</target>

	<target name="jarClient" depends="compileResources">
		<javac target="${jdk}" source="${jdk}" executable="${javac}" srcdir="src/main" destdir="bin" debug="true">
			<include name="org/h2/*" />
			<include name="org/h2/jdbc/**" /> 
			<include name="org/h2/jdbcx/**" />
		</javac>
		<jar jarfile="bin/h2client.jar" basedir="bin">
			<include name="**/*.*"/>
			<exclude name="**/*.bat"/>
		</jar>
	</target>
	
	<target name="jarDb" depends="compileResources">
		<javac target="${jdk}" source="${jdk}" executable="${javac}" srcdir="src/main" destdir="bin" debug="true">
			<include name="org/h2/*" />
			<include name="org/h2/engine/**" /> 
			<include name="org/h2/jdbc/**" /> 
			<include name="org/h2/jdbcx/**" />
		</javac>
		<jar jarfile="bin/h2db.jar" basedir="bin">
			<include name="**/*.*"/>
			<exclude name="**/*.bat"/>
		</jar>
	</target>	

	<target name="javadoc">
		<javac target="${jdk}" source="${jdk}" executable="${javac}" srcdir="src/test" destdir="bin" debug="true" includes="org/h2/test/bnf/*.java"/>
		<javac target="${jdk}" source="${jdk}" executable="${javac}" srcdir="src/tools" destdir="bin" debug="true" includes="org/h2/tools/doclet/*.java"/>
		<mkdir dir="docs/javadoc"/>
		<javadoc
			sourcepath="src/main"
			packagenames="org.h2.jdbc.*,org.h2.tools.*,org.h2.api.*"
			doclet="org.h2.tools.doclet.Doclet"
			docletpath="bin"
		/>
		<copy todir="docs/javadoc">
			<fileset dir="src/docsrc/javadoc" includes="**/*"/>
		</copy>
	</target>

228
	<target name="mavenBuildCentral">
229
		<copy tofile="bin/h2-${version.name.maven}.jar" file="bin/h2.jar" />
230 231
		<copy tofile="bin/pom.xml" filtering="true" file="src/installer/pom.xml">
			<filterset>
232
				<filter token="version" value="${version.name.maven}"/>
233 234
		    </filterset>
		</copy>
235
		<jar destfile="bin/h2-${version.name.maven}-bundle.jar" basedir="bin">
236
			<include name="pom.xml" />
237
			<include name="h2-${version.name.maven}.jar" />
238
		</jar>
239 240
	</target>	

241
	<target name="mavenUploadLocal" depends="jar">
242 243 244 245 246
		<copy tofile="bin/pom.xml" filtering="true" file="src/installer/pom.xml">
			<filterset>
				<filter token="version" value="1.0-SNAPSHOT"/>
		    </filterset>
		</copy>
247 248 249 250 251 252 253
		<exec executable="mvn.bat">
			<arg value="install:install-file"/>
			<arg value="-Dversion=1.0-SNAPSHOT"/>
			<arg value="-Dfile=bin/h2.jar"/>
			<arg value="-DgroupId=org.h2database"/>
			<arg value="-DartifactId=h2"/>
			<arg value="-Dpackaging=jar"/>
254
			<arg value="-DpomFile=bin/pom.xml"/>
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
		</exec>
	</target>

	<target name="test" depends="compile">
		<java classname="org.h2.test.TestAll" fork="true" classpath="bin" />
	</target>

	<target name="testCoverage" depends="compile">
		<copy todir="bin" overwrite="true">
			<fileset dir="src/main"/>
		</copy>
		<java classname="org.h2.test.coverage.Coverage" classpath="bin" dir="bin" fork="true">
			<arg line="-e org/h2/web -e org/h2/server/Odbc -e org/h2/jdbcx -e org/h2/bnf -r org/h2"/>
		</java>
		<javac target="${jdk}" source="${jdk}" executable="${javac}" srcdir="bin" destdir="bin" debug="true" includes="org/h2/**"/>
		<java classname="org.h2.test.TestAll" fork="true" classpath="bin" dir="bin">
			<arg line="codeCoverage"/>
		</java>
	</target>

	<target name="testProf" depends="compile">
		<java classname="org.h2.test.TestAll" fork="true" classpath="bin">
			<jvmarg value="-Xrunhprof:cpu=samples,depth=8"/>
			<!-- <jvmarg value="-agentlib:hprof=help"/> -->
		</java>
	</target>

	<target name="zip">
		<zip destfile="../h2.zip">
			<fileset dir=".." includes="h2/build.xml"/>
285
			<fileset dir=".." includes="h2/ant-build.properties"/>
286 287 288 289 290 291 292 293 294
			<fileset dir=".." includes="h2/bin/**/*"/>
			<fileset dir=".." includes="h2/docs/**/*"/>
			<fileset dir=".." includes="h2/odbc/**/*"/>
			<fileset dir=".." includes="h2/service/**/*"/>
			<fileset dir=".." includes="h2/src/**/*"/>
		</zip>
	</target>

</project>