[jetrix-cvs] SF.net SVN: jetrix:[733] jetrix/branches/0.2.x
Brought to you by:
smanux
From: <sm...@us...> - 2008-08-22 13:15:03
|
Revision: 733 http://jetrix.svn.sourceforge.net/jetrix/?rev=733&view=rev Author: smanux Date: 2008-08-22 13:15:00 +0000 (Fri, 22 Aug 2008) Log Message: ----------- Change the version to 0.2.3 Set the build to target Java 5 Modified Paths: -------------- jetrix/branches/0.2.x/build.xml jetrix/branches/0.2.x/project.properties Modified: jetrix/branches/0.2.x/build.xml =================================================================== --- jetrix/branches/0.2.x/build.xml 2008-08-22 13:13:53 UTC (rev 732) +++ jetrix/branches/0.2.x/build.xml 2008-08-22 13:15:00 UTC (rev 733) @@ -43,7 +43,7 @@ <target name="compile" depends="prepare"> <!-- Compile the java code from ${src} into ${build} --> - <javac srcdir="${build}/java" destdir="${build}/classes" debug="${compile.debug}" optimize="${compile.optimize}"> + <javac srcdir="${build}/java" destdir="${build}/classes" debug="${compile.debug}" optimize="${compile.optimize}" source="1.5" target="1.5"> <classpath> <path refid="classpath.main"/> </classpath> @@ -59,7 +59,7 @@ <target name="compile.servlet" depends="compile" description="Compile the Servlets"> <mkdir dir="${build}/jsp"/> - <javac destdir="${build}/jsp" debug="yes"> + <javac destdir="${build}/jsp" debug="yes" source="1.5" target="1.5"> <classpath> <pathelement path="${build}/classes/"/> <path refid="classpath.main"/> @@ -76,7 +76,7 @@ <pathelement location="${ant.home}/lib/ant.jar"/> </classpath> </jspc> - <javac destdir="${build}/jsp" debug="yes"> + <javac destdir="${build}/jsp" debug="yes" source="1.5" target="1.5"> <classpath> <pathelement path="${build}/classes/"/> <path refid="classpath.main"/> Modified: jetrix/branches/0.2.x/project.properties =================================================================== --- jetrix/branches/0.2.x/project.properties 2008-08-22 13:13:53 UTC (rev 732) +++ jetrix/branches/0.2.x/project.properties 2008-08-22 13:15:00 UTC (rev 733) @@ -1,5 +1,5 @@ -version=0.2.2 -version.stable=0.2.2 +version=0.2.3 +version.stable=0.2.3 maven.junit.fork=true maven.junit.dir=target This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |