Author: drazzib Date: 2011-01-08 00:58:12 +0000 (Sat, 08 Jan 2011) New Revision: 13193
Modified: trunk/antlr3/debian/changelog trunk/antlr3/debian/control trunk/antlr3/debian/maven.properties trunk/antlr3/debian/rules Log: * d/rules: Set DEB_MAVEN_BUILD_TARGET := package install so that JAR will be installed in temporary maven repository. This should please javadoc:jar plugin. (Closes: #606294) (ie. it won't try to download antlr-gunit module from network). * d/control: Build-Depends on libmaven-install-plugin-java to get "install" lifecycle working. Modified: trunk/antlr3/debian/changelog =================================================================== --- trunk/antlr3/debian/changelog 2010-12-31 00:19:32 UTC (rev 13192) +++ trunk/antlr3/debian/changelog 2011-01-08 00:58:12 UTC (rev 13193) @@ -1,10 +1,14 @@ antlr3 (3.2-5) unstable; urgency=low - UNRELEASED * Team upload. - * Don't skip tests but ignore failures. + * d/rules: Set DEB_MAVEN_BUILD_TARGET := package install + so that JAR will be installed in temporary maven repository. + This should please javadoc:jar plugin. (Closes: #606294) + (ie. it won't try to download antlr-gunit module from network). + * d/control: Build-Depends on libmaven-install-plugin-java to get + "install" lifecycle working. - -- Torsten Werner <[email protected]> Tue, 03 Aug 2010 02:52:07 +0200 + -- Damien Raude-Morvan <[email protected]> Sat, 08 Jan 2011 01:55:34 +0100 antlr3 (3.2-4) unstable; urgency=low Modified: trunk/antlr3/debian/control =================================================================== --- trunk/antlr3/debian/control 2010-12-31 00:19:32 UTC (rev 13192) +++ trunk/antlr3/debian/control 2011-01-08 00:58:12 UTC (rev 13193) @@ -6,7 +6,8 @@ Build-Depends: debhelper (>= 7), cdbs, default-jdk, maven-debian-helper (>= 1.1), libstringtemplate-java (>= 3.2.1), libantlr-maven-plugin-java (>= 2.1), libmaven-plugin-testing-java, - libmaven-javadoc-plugin-java, default-jdk-doc, gcj-native-helper + libmaven-javadoc-plugin-java, libmaven-install-plugin-java, + default-jdk-doc, gcj-native-helper Standards-Version: 3.9.0 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/antlr3 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/antlr3 Modified: trunk/antlr3/debian/maven.properties =================================================================== --- trunk/antlr3/debian/maven.properties 2010-12-31 00:19:32 UTC (rev 13192) +++ trunk/antlr3/debian/maven.properties 2011-01-08 00:58:12 UTC (rev 13193) @@ -1,4 +1,3 @@ # Include here properties to pass to Maven during the build. # For example: -# maven.test.skip=true -maven.test.failure.ignore=true +maven.test.skip=true Modified: trunk/antlr3/debian/rules =================================================================== --- trunk/antlr3/debian/rules 2010-12-31 00:19:32 UTC (rev 13192) +++ trunk/antlr3/debian/rules 2011-01-08 00:58:12 UTC (rev 13193) @@ -14,6 +14,7 @@ endif DEB_MAVEN_INSTALL_TO_USJ := false +DEB_MAVEN_BUILD_TARGET := package install DEB_MAVEN_DOC_TARGET := javadoc:jar javadoc:aggregate PACKAGE := $(DEB_SOURCE_PACKAGE) VERSION := $(shell echo $(DEB_UPSTREAM_VERSION) | cut -d'+' -f1 -) _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits

