CVS commons-beanutils
Arnaud Vandyck
avdyk at haydn.debian.org
Mon Sep 19 11:37:25 UTC 2005
Update of /cvsroot/pkg-java/commons-beanutils
In directory haydn:/tmp/cvs-serv16036
Modified Files:
build.xml
Log Message:
commons-beanutils (1.6.1-5) unstable; urgency=low
--- /cvsroot/pkg-java/commons-beanutils/build.xml 2002/10/20 02:58:32 1.1.1.1
+++ /cvsroot/pkg-java/commons-beanutils/build.xml 2005/09/19 11:37:25 1.2
@@ -3,7 +3,7 @@
<!--
"Bean Utilities" component of the Jakarta Commons Subproject
- $Id: build.xml,v 1.1.1.1 2002/10/20 02:58:32 tora Exp $
+ $Id: build.xml,v 1.2 2005/09/19 11:37:25 avdyk Exp $
-->
@@ -55,7 +55,7 @@
<property name="component.title" value="Bean Introspection Utilities"/>
<!-- The current version number of this component -->
- <property name="component.version" value="1.3"/>
+ <property name="component.version" value="1.6.1"/>
<!-- The base directory for compilation targets -->
<property name="build.home" value="target"/>
@@ -80,7 +80,7 @@
<property name="compile.debug" value="true"/>
<!-- Should Java compilations set the 'deprecation' compiler option? -->
- <property name="compile.deprecation" value="true"/>
+ <property name="compile.deprecation" value="false"/>
<!-- Should Java compilations set the 'optimize' compiler option? -->
<property name="compile.optimize" value="true"/>
@@ -158,6 +158,7 @@
<javac srcdir="${source.home}"
destdir="${build.home}/classes"
debug="${compile.debug}"
+ source="1.3"
deprecation="${compile.deprecation}"
optimize="${compile.optimize}">
<classpath refid="compile.classpath"/>
@@ -208,7 +209,7 @@
overview="src/java/overview.html"
doctitle="<h1>${component.title} (Version ${component.version})</h1>"
windowtitle="${component.title} (Version ${component.version})"
- bottom="Copyright (c) 2001-2002 - Apache Software Foundation">
+ bottom="Copyright (c) 2001-2003 - Apache Software Foundation">
<classpath refid="compile.classpath"/>
</javadoc>
</target>
@@ -217,8 +218,12 @@
<target name="dist" depends="compile,javadoc"
description="Create binary distribution">
<mkdir dir="${dist.home}"/>
+<!--
+ <copy file="LICENSE.txt"
+ todir="${dist.home}"/>
<copy file="RELEASE-NOTES.txt"
todir="${dist.home}"/>
+-->
<antcall target="jar"/>
</target>
@@ -227,6 +232,8 @@
description="Create jar">
<mkdir dir="${dist.home}"/>
<mkdir dir="${build.home}/classes/META-INF"/>
+ <copy file="LICENSE.txt"
+ tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
<jar jarfile="${dist.home}/commons-${component.name}.jar"
basedir="${build.home}/classes"
manifest="${build.home}/conf/MANIFEST.MF"/>
@@ -254,7 +261,11 @@
test.dyna.bean,
test.bean,
test.convert,
- test.method
+ test.method,
+ test.dyna.result,
+ test.dyna.row,
+ test.bean.comparator,
+ test.locale.converters
"
description="Run all unit test cases">
</target>
@@ -380,5 +391,63 @@
</java>
</target>
+ <target name="test.dyna.result" depends="compile.tests">
+ <echo message="Running DynaBean ResultSet tests ..."/>
+ <java classname="${test.runner}" fork="yes"
+ failonerror="${test.failonerror}">
+ <sysproperty key="org.apache.commons.logging.LogFactory"
+ value="${test.factory}"/>
+ <sysproperty key="org.apache.commons.logging.Log"
+ value="${test.log}"/>
+ <sysproperty key="org.apache.commons.logging.simplelog.defaultlog"
+ value="${test.level}"/>
+ <arg value="org.apache.commons.beanutils.DynaResultSetTestCase"/>
+ <classpath refid="test.classpath"/>
+ </java>
+ </target>
+
+ <target name="test.dyna.row" depends="compile.tests">
+ <echo message="Running DynaBean RowSet tests ..."/>
+ <java classname="${test.runner}" fork="yes"
+ failonerror="${test.failonerror}">
+ <sysproperty key="org.apache.commons.logging.LogFactory"
+ value="${test.factory}"/>
+ <sysproperty key="org.apache.commons.logging.Log"
+ value="${test.log}"/>
+ <sysproperty key="org.apache.commons.logging.simplelog.defaultlog"
+ value="${test.level}"/>
+ <arg value="org.apache.commons.beanutils.DynaRowSetTestCase"/>
+ <classpath refid="test.classpath"/>
+ </java>
+ </target>
+ <target name="test.bean.comparator" depends="compile.tests">
+ <echo message="Running BeanComparator tests ..."/>
+ <java classname="${test.runner}" fork="yes"
+ failonerror="${test.failonerror}">
+ <sysproperty key="org.apache.commons.logging.LogFactory"
+ value="${test.factory}"/>
+ <sysproperty key="org.apache.commons.logging.Log"
+ value="${test.log}"/>
+ <sysproperty key="org.apache.commons.logging.simplelog.defaultlog"
+ value="${test.level}"/>
+ <arg value="org.apache.commons.beanutils.BeanComparatorTestCase"/>
+ <classpath refid="test.classpath"/>
+ </java>
+ </target>
+
+ <target name="test.locale.converters" depends="compile.tests">
+ <echo message="Running Locale converters tests ..."/>
+ <java classname="${test.runner}" fork="yes"
+ failonerror="${test.failonerror}">
+ <sysproperty key="org.apache.commons.logging.LogFactory"
+ value="${test.factory}"/>
+ <sysproperty key="org.apache.commons.logging.Log"
+ value="${test.log}"/>
+ <sysproperty key="org.apache.commons.logging.simplelog.defaultlog"
+ value="${test.level}"/>
+ <arg value="org.apache.commons.beanutils.locale.converters.DateLocaleConverterTestCase"/>
+ <classpath refid="test.classpath"/>
+ </java>
+ </target>
</project>
More information about the pkg-java-commits
mailing list