[maven2] 33/87: maven2 (2.0.8-4) unstable; urgency=low
Emmanuel Bourg
ebourg-guest at moszumanska.debian.org
Fri Feb 27 13:59:07 UTC 2015
This is an automated email from the git hooks/post-receive script.
ebourg-guest pushed a commit to branch master
in repository maven2.
commit 68268031303a2b9eb7c82d94f4faeb39170b8c78
Author: Paul Cager <paul-debian at home.paulcager.org>
Date: Sat Jan 12 00:03:36 2008 +0000
maven2 (2.0.8-4) unstable; urgency=low
* Closes: #458895: Creating empty project with artifacts fails.
Bug appeared when version 1.1 of libcommons-cli-java was uploaded. This
new version conforms more rigorously to its API check which exposed
a bug in the Maven code. (Patch "command-line").
-- Paul Cager <paul-debian at home.paulcager.org> Fri, 11 Jan 2008 23:49:29 +0000
---
debian/changelog | 9 +++++++++
debian/patches/command-line.patch | 35 +++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/debian/changelog b/debian/changelog
index c4c5678..2bb5e08 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+maven2 (2.0.8-4) unstable; urgency=low
+
+ * Closes: #458895: Creating empty project with artifacts fails.
+ Bug appeared when version 1.1 of libcommons-cli-java was uploaded. This
+ new version conforms more rigorously to its API check which exposed
+ a bug in the Maven code. (Patch "command-line").
+
+ -- Paul Cager <paul-debian at home.paulcager.org> Fri, 11 Jan 2008 23:49:29 +0000
+
maven2 (2.0.8-3) unstable; urgency=low
* Add versioned runtime dependency to libplexus-utils-java.
diff --git a/debian/patches/command-line.patch b/debian/patches/command-line.patch
new file mode 100644
index 0000000..e1e53a9
--- /dev/null
+++ b/debian/patches/command-line.patch
@@ -0,0 +1,35 @@
+diff -Nur maven/maven-core/src/main/java/org/apache/maven/cli/MavenCli.java maven.new/maven-core/src/main/java/org/apache/maven/cli/MavenCli.java
+--- maven/maven-core/src/main/java/org/apache/maven/cli/MavenCli.java 2007-10-24 00:01:40.000000000 +0100
++++ maven.new/maven-core/src/main/java/org/apache/maven/cli/MavenCli.java 2008-01-11 23:57:39.000000000 +0000
+@@ -675,11 +675,11 @@
+ {
+ options = new Options();
+
+- options.addOption( OptionBuilder.withLongOpt( "file" ).hasArg().withDescription(
++ options.addOption( OptionBuilder.withLongOpt( "file" ).hasArgs().withDescription(
+ "Force the use of an alternate POM file." ).create( ALTERNATE_POM_FILE ) );
+
+ options.addOption(
+- OptionBuilder.withLongOpt( "define" ).hasArg().withDescription( "Define a system property" ).create(
++ OptionBuilder.withLongOpt( "define" ).hasArgs().withDescription( "Define a system property" ).create(
+ SET_SYSTEM_PROPERTY ) );
+ options.addOption(
+ OptionBuilder.withLongOpt( "offline" ).withDescription( "Work offline" ).create( OFFLINE ) );
+@@ -704,7 +704,7 @@
+ options.addOption( OptionBuilder.withLongOpt( "update-snapshots" ).withDescription(
+ "Forces a check for updated releases and snapshots on remote repositories" ).create( UPDATE_SNAPSHOTS ) );
+ options.addOption( OptionBuilder.withLongOpt( "activate-profiles" ).withDescription(
+- "Comma-delimited list of profiles to activate" ).hasArg().create( ACTIVATE_PROFILES ) );
++ "Comma-delimited list of profiles to activate" ).hasArgs().create( ACTIVATE_PROFILES ) );
+
+ options.addOption( OptionBuilder.withLongOpt( "batch-mode" ).withDescription(
+ "Run in non-interactive (batch) mode" ).create( BATCH_MODE ) );
+@@ -726,7 +726,7 @@
+ CHECKSUM_WARNING_POLICY ) );
+
+ options.addOption( OptionBuilder.withLongOpt( "settings" )
+- .withDescription( "Alternate path for the user settings file" ).hasArg()
++ .withDescription( "Alternate path for the user settings file" ).hasArgs()
+ .create( ALTERNATE_USER_SETTINGS ) );
+
+ options.addOption( OptionBuilder.withLongOpt( "fail-fast" ).withDescription(
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/maven2.git
More information about the pkg-java-commits
mailing list