You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2011/04/02 21:48:29 UTC

svn commit: r1088098 - in /commons/proper/codec/trunk: build.xml default.properties

Author: ggregory
Date: Sat Apr  2 19:48:29 2011
New Revision: 1088098

URL: http://svn.apache.org/viewvc?rev=1088098&view=rev
Log:
https://issues.apache.org/jira/browse/CODEC-119 Migrate to Java 5
https://issues.apache.org/jira/browse/CODEC-120 Migrate to JUnit 4
No [codec] code changes yet. This is all set up for 2.0, Java 5 and JUnit 4.

Modified:
    commons/proper/codec/trunk/build.xml
    commons/proper/codec/trunk/default.properties

Modified: commons/proper/codec/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/build.xml?rev=1088098&r1=1088097&r2=1088098&view=diff
==============================================================================
--- commons/proper/codec/trunk/build.xml (original)
+++ commons/proper/codec/trunk/build.xml Sat Apr  2 19:48:29 2011
@@ -67,7 +67,7 @@ limitations under the License.
         <delete dir="${dist.home}"/>
         <delete dir="${pub.home}"/>
     </target>
-    <target name="all" depends="clean,compile" description="Clean and compile all components"/>
+    <target name="all" depends="clean, compile" description="Clean and compile all components"/>
     <target name="javadoc" depends="compile" description="Create component Javadoc documentation">
         <mkdir dir="${dist.home}"/>
         <mkdir dir="${dist.home}/docs"/>
@@ -76,7 +76,6 @@ limitations under the License.
         <tstamp>
             <format property="current.year" pattern="yyyy"/>
         </tstamp>
-         <!-- The Sun 1.2 docs are no-longer on-line, point to 1.3. -->
         <javadoc
             sourcepath="${source.home}"
             destdir="${dist.home}/docs/api"
@@ -94,7 +93,7 @@ limitations under the License.
             <classpath refid="compile.classpath"/>
         </javadoc>
     </target>
-    <target name="dist" depends="compile,javadoc" description="Create binary distribution">
+    <target name="dist" depends="compile, javadoc" description="Create binary distribution">
         <mkdir dir="${dist.home}"/>
         <copy file="${basedir}/LICENSE.txt" todir="${dist.home}"/>
         <copy file="${basedir}/NOTICE.txt" todir="${dist.home}"/>

Modified: commons/proper/codec/trunk/default.properties
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/default.properties?rev=1088098&r1=1088097&r2=1088098&view=diff
==============================================================================
--- commons/proper/codec/trunk/default.properties (original)
+++ commons/proper/codec/trunk/default.properties Sat Apr  2 19:48:29 2011
@@ -21,8 +21,8 @@
 repository=${user.home}/.m2/repository
 
 # The pathname of the "junit.jar" JAR file
-junit.home=${repository}/junit/junit/3.8.2
-junit.jar = ${junit.home}/junit-3.8.2.jar
+junit.home=${repository}/junit/junit/4.8.2
+junit.jar = ${junit.home}/junit-4.8.2.jar
 
 # The name of this component
 component.name = commons-codec
@@ -34,7 +34,7 @@ component.package = org.apache.commons.c
 component.title = Encode/Decode Utilities
 
 # The current version number of this component
-component.version = 1.5-SNAPSHOT
+component.version = 2.0-SNAPSHOT
 
 # The name that is used to create the jar file
 final.name = ${component.name}-${component.version}
@@ -73,8 +73,8 @@ compile.includeantruntime = false
 compile.encoding = UTF-8
 
 # Java version settings
-compile.source = 1.4
-compile.target = 1.4
+compile.source = 1.5
+compile.target = 1.5
 
 # Should all tests fail if one does?
 test.failonerror = true