Changeset 339 for branches/release-0_71-bugfixes/Rapla/build.xml
- Timestamp:
- 04/22/02 14:57:50 (10 years ago)
- Files:
-
- 1 modified
-
branches/release-0_71-bugfixes/Rapla/build.xml (modified) (13 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/release-0_71-bugfixes/Rapla/build.xml
r335 r339 83 83 84 84 <!-- Rapla build-file 85 Copyright (C) 2001 -2002Christopher Kohlhaas85 Copyright (C) 2001 Christopher Kohlhaas 86 86 87 87 This programm is free software; you can redistribute it and/or modify … … 109 109 <property name="bin-lib0" value="${main.lib}" /> 110 110 <property name="bin-lib1" value="crimson.jar"/> 111 <property name="bin-lib2" value="jing.jar"/> 112 <property name="bin-lib3" value="saxon.jar"/> 113 <!--property name="bin-lib2" value="mm.mysql-2.0.8-bin.jar"/--> 111 <property name="bin-lib2" value="mm.mysql-2.0.8-bin.jar"/> 114 112 <property name="bin-lib3" value="jdbc7.1-1.2.jar"/> 115 113 … … 143 141 144 142 <property name="name" value="rapla"/> 145 <property name="version" value="0. 8dev"/>146 <property name="year" value="2000-200 2"/>143 <property name="version" value="0.71"/> 144 <property name="year" value="2000-2001"/> 147 145 <property name="copyright" value="Rapla Team"/> 148 146 … … 153 151 <property name="deprecation" value="on"/> 154 152 <property name="verbose" value="no"/> 155 <property name="packages" value="org. *"/>153 <property name="packages" value="org.rapla.*"/> 156 154 157 155 <!-- The rapla-directories --> … … 202 200 <property name="libs-win" value=".\lib\${bin-lib0};.\lib\${bin-lib1};.\lib\${bin-lib2};.\lib\${bin-lib3}"/> 203 201 <property name="libs-applet" value="${bin-lib0},${bin-lib1},${bin-lib2},${bin-lib3}"/> 204 <property name="libs-jar" value="${bin-lib0} ${bin-lib1} ${bin-lib2} ${bin-lib3}../"/>202 <property name="libs-jar" value="${bin-lib0} ${bin-lib1} ../"/> 205 203 <!-- This complex Property is for the rapla.jnpl file --> 206 204 <property name="lib_jnlp_0" value="<jar href="${bin-lib0}"/>"/> … … 255 253 <classpath refid="classpath"/> 256 254 <exclude name="**/RaplaResources*.java" /> 257 < exclude name="**/PrintServicePrinter.java" />255 <!--exclude name="**/dbsql/*.java" /--> 258 256 </javac> 259 <!-- The gifs ,license,xsl and rng filesmust be in the correct classpath -->257 <!-- The gifs must be in the correct classpath --> 260 258 <copy todir="${build.dest}"> 261 259 <fileset dir="${src.dir}"> 262 <include name="**/images/*"/> 263 <include name="**/dbfile/*.xsl"/> 264 <include name="**/dbfile/*.rng"/> 265 </fileset> 266 </copy> 260 <include name="**/*.gif"/> 261 </fileset> 262 </copy> 267 263 </target> 268 264 … … 314 310 <fileset dir="${build.dir}/classes"> 315 311 <include name="**/*.class" /> 316 <include name="**/*.xsl" /> 317 <include name="**/*.rng" /> 318 <include name="**/images/*" /> 312 <include name="**/*.gif" /> 319 313 </fileset> 320 314 </jar> … … 347 341 <mapper type="glob" from="template_*" to="start.*"/> 348 342 </copy> 349 350 <fixcrlf srcdir="${dist-bin.dir}" eol="crlf">351 <include name="*.bat" />352 </fixcrlf>353 343 354 344 <copy todir="${dist-bin.dir}" > … … 368 358 </fileset> 369 359 </chmod> 370 </target>371 372 <target name="start" depends="compile,compile-resources"373 description="Use this during development to quick-launch rapla.">374 <copy todir="${test.dir}">375 <fileset dir="${main.dir}">376 <include name="rapla.properties" />377 <include name="data.xml" />378 </fileset>379 </copy>380 <java classname="${start.class}"381 failonerror="yes"382 fork="no"383 dir="${main.dir}">384 <classpath>385 <pathelement path="${build.dest}" />386 <fileset dir="${main.dir}/lib">387 <patternset refid="bin-libraries" />388 <include name="gnujpdf.jar"/>389 <include name="${main.lib}"/>390 </fileset>391 </classpath>392 <arg value="-c"/>393 <arg value="${test.dir}/rapla.properties"/>394 <arg value="build-script"/>395 </java>396 360 </target> 397 361 … … 407 371 </fileset> 408 372 </classpath> 409 <arg value="-c"/>410 <arg value="rapla.properties"/>411 373 </java> 412 374 </target> … … 536 498 <exclude name="CVS" /> 537 499 <exclude name="xalan*.jar" /> 500 <exclude name="saxon*.jar" /> 538 501 </fileset> 539 502 </copy> … … 770 733 771 734 <!-- =================================================================== --> 772 <!-- Rebuilds website, javadocs, but not the applet-->773 <!-- =================================================================== --> 774 775 <target name="rebuild-site" depends="clean,javadocs, site"776 description="Rebuild the complete site ">735 <!-- Rebuilds website, includes tarballs,javadocs, but not the applet --> 736 <!-- =================================================================== --> 737 738 <target name="rebuild-site" depends="clean,javadocs,cleansite,site" 739 description="Rebuild the complete site (very long)"> 777 740 <mkdir dir="${website.dir}/doc/javadocs"/> 778 741 <mkdir dir="${website.dir}/download"/> 742 <mkdir dir="${website.dir}/demo"/> 779 743 <copy todir="${website.dir}/doc/javadocs"> 780 744 <fileset dir="${build.dir}/javadocs"/> 745 </copy> 746 <copy todir="${website.dir}/download"> 747 <fileset dir="${dist.dir}"> 748 <include name="*.zip"/> 749 <include name="*.tar.gz"/> 750 </fileset> 751 </copy> 752 <copy todir="${website.dir}/demo"> 753 <fileset dir="${dist-webapp.dir}"/> 781 754 </copy> 782 755 </target> … … 925 898 <include name="**/*Test.class" /> 926 899 <exclude name="**/storage/dbsql/*.class" /> 927 <exclude name="**/storage/dbfile/*.class" />928 900 <exclude name="**/AllTest.class" /> 929 901 <exclude name="**/*$$*Test.class" />
![(please configure the [header_logo] section in trac.ini)](/chrome/site/rapla.jpg)