This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository libcommons-compress-java.
commit aceffd225422e11d59f209df54934f9eac4c4e6f Author: Jakub Adam <[email protected]> Date: Sat Oct 27 15:59:42 2012 +0000 Ensure backwards compatible bytecode is built (Closes: #688118) --- debian/build.xml | 4 ++-- debian/changelog | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/build.xml b/debian/build.xml index 7afaa23..7c299ee 100644 --- a/debian/build.xml +++ b/debian/build.xml @@ -10,13 +10,13 @@ <target name="compile" description="o Compile the source files"> <mkdir dir="${class.dir}"/> <javac srcdir="${source.dir}" destdir="${class.dir}" - debug="true" source="1.5"/> + debug="true" source="1.5" target="1.5"/> </target> <target name="test-compile" description="o Compile the test source files" depends="compile"> <mkdir dir="${test.class.dir}"/> <javac srcdir="${test.source.dir}" destdir="${test.class.dir}" - debug="true" source="1.5" encoding="ISO-8859-1"> + debug="true" source="1.5" target="1.5" encoding="ISO-8859-1"> <classpath> <pathelement location="${class.dir}"/> <pathelement path="${java.class.path}"/> diff --git a/debian/changelog b/debian/changelog index 97a8829..665173b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ libcommons-compress-java (1.4.1-3) UNRELEASED; urgency=low * Add xz.jar to manifest Class-Path. - fixes lintian-reported warning missing-classpath. + * Ensure backwards compatible bytecode is built (Closes: #688118). -- Jakub Adam <[email protected]> Sat, 27 Oct 2012 15:57:18 +0200 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libcommons-compress-java.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

