This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository maven-assembly-plugin.

commit 1245fffaec6b956c291bfafddef68f6f82731aac
Author: Emmanuel Bourg <[email protected]>
Date:   Mon Nov 4 11:55:53 2013 +0000

    Added plexus-archiver-compatibility.patch
---
 debian/patches/plexus-archiver-compatibility.patch | 44 ++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/debian/patches/plexus-archiver-compatibility.patch 
b/debian/patches/plexus-archiver-compatibility.patch
new file mode 100644
index 0000000..89f5a9e
--- /dev/null
+++ b/debian/patches/plexus-archiver-compatibility.patch
@@ -0,0 +1,44 @@
+Description: Ensures the compatibility with the version of plexus-archiver
+ available in Debian. This patch can be dropped after upgrading to
+ maven-assembly-plugin 2.2 or later.
+Author: Emmanuel Bourg <[email protected]>
+Forwarded: not-needed
+--- 
a/src/main/java/org/apache/maven/plugin/assembly/archive/archiver/AssemblyProxyArchiver.java
++++ 
b/src/main/java/org/apache/maven/plugin/assembly/archive/archiver/AssemblyProxyArchiver.java
+@@ -75,6 +75,11 @@
+ 
+     private Set seenPaths = new HashSet();
+ 
++    /**
++     * @since 2.2-beta-6
++     */
++    private boolean useJvmChmod;
++
+     public AssemblyProxyArchiver( String rootPrefix, Archiver delegate, List 
containerDescriptorHandlers,
+                                    List extraSelectors, List extraFinalizers, 
Logger logger )
+     {
+@@ -897,4 +902,23 @@
+         }
+     }
+ 
++    public boolean isUseJvmChmod()
++    {
++        return useJvmChmod;
++    }
++
++    public void setUseJvmChmod( final boolean useJvmChmod )
++    {
++        this.useJvmChmod = useJvmChmod;
++    }
++
++    public boolean isIgnorePermissions()
++    {
++        return delegate.isIgnorePermissions();
++    }
++
++    public void setIgnorePermissions( boolean ignorePermissions )
++    {
++        delegate.setIgnorePermissions( ignorePermissions );
++    }
+ }
+

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/maven-assembly-plugin.git

_______________________________________________
pkg-java-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to