Update of /cvsroot/jrobin/ant
In directory sc8-pr-cvs17.sourceforge.net:/tmp/cvs-serv18619/ant
Modified Files:
build.xml
Log Message:
re-build as 1.5.9.1, targetting 1.5 instead of whatever you build with
Index: build.xml
===================================================================
RCS file: /cvsroot/jrobin/ant/build.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** build.xml 26 Aug 2008 18:15:08 -0000 1.6
--- build.xml 5 Sep 2008 19:25:32 -0000 1.7
***************
*** 27,31 ****
<!-- VARIABLES -->
! <property name="version" value="1.5.9"/>
<property name="who" value="Sasa Markovic <sa...@eu...>"/>
<property name="home" location=".."/>
--- 27,31 ----
<!-- VARIABLES -->
! <property name="version" value="1.5.9.1"/>
<property name="who" value="Sasa Markovic <sa...@eu...>"/>
<property name="home" location=".."/>
***************
*** 70,74 ****
<javac
srcdir="${home}/${src}" destdir="${home}/${classes}"
! compiler="modern" source="1.5"
/>
</target>
--- 70,74 ----
<javac
srcdir="${home}/${src}" destdir="${home}/${classes}"
! compiler="modern" source="1.5" target="1.5"
/>
</target>
***************
*** 111,114 ****
--- 111,115 ----
excludepackagenames="org.jrobin.core.jrrd.*"
source="1.5"
+ target="1.5"
sourcepath="${home}/${src}"
access="protected"
|