[ictk-cvs] ictk build.xml,1.25,1.26
chess library in java, PGN, FEN, ICS
Brought to you by:
jvarsoke
|
From: <jva...@us...> - 2003-09-30 19:42:22
|
Update of /cvsroot/ictk/ictk
In directory sc8-pr-cvs1:/tmp/cvs-serv11571
Modified Files:
build.xml
Log Message:
added jar-nonet target for building a jar w/o the Net libraries.
Index: build.xml
===================================================================
RCS file: /cvsroot/ictk/ictk/build.xml,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** build.xml 26 Aug 2003 20:43:08 -0000 1.25
--- build.xml 30 Sep 2003 19:42:18 -0000 1.26
***************
*** 32,37 ****
<!-- global properties -->
! <property name="version" value="0.1.3"/>
! <property name="cvs.tag" value="ictk-v0_1_3-Release"/>
<property name="build.file.id" value="$Id$"/>
<!-- if you want 'protected' docs, you should set this variable
--- 32,37 ----
<!-- global properties -->
! <property name="version" value="0.2.0"/>
! <property name="cvs.tag" value="ictk-v0_2_0-Release"/>
<property name="build.file.id" value="$Id$"/>
<!-- if you want 'protected' docs, you should set this variable
***************
*** 46,49 ****
--- 46,50 ----
<property name="release.file" value="ictk-${version}"/>
<property name="output.jar" value="${release.file}.jar"/>
+ <property name="nonet.jar" value="${release.file}-nonet.jar"/>
<!--JUnit -->
***************
*** 331,334 ****
--- 332,345 ----
</target>
+ <target name="jar-nonet" depends="compile"
+ description="builds a jar file w/o the Net libraries">
+ <jar
+ jarfile="${nonet.jar}"
+ basedir="${build.dir}"
+ compress="no"
+ excludes="**/net/**"
+ />
+ </target>
+
<!-- ..................................................................-->
***************
*** 383,387 ****
<!-- binary distribution files -->
! <target name="bin" depends="clean,jar,docs"
description="create the binary release file">
<property name="bin.include"
--- 394,398 ----
<!-- binary distribution files -->
! <target name="bin" depends="clean,jar,jar-nonet,docs"
description="create the binary release file">
<property name="bin.include"
|