[pkg-java] r17402 - trunk/maven-assembly-plugin/debian/patches

Emmanuel Bourg ebourg-guest at alioth.debian.org
Mon Nov 4 11:55:54 UTC 2013


Author: ebourg-guest
Date: 2013-11-04 11:55:53 +0000 (Mon, 04 Nov 2013)
New Revision: 17402

Added:
   trunk/maven-assembly-plugin/debian/patches/plexus-archiver-compatibility.patch
Log:
Added plexus-archiver-compatibility.patch



Added: trunk/maven-assembly-plugin/debian/patches/plexus-archiver-compatibility.patch
===================================================================
--- trunk/maven-assembly-plugin/debian/patches/plexus-archiver-compatibility.patch	                        (rev 0)
+++ trunk/maven-assembly-plugin/debian/patches/plexus-archiver-compatibility.patch	2013-11-04 11:55:53 UTC (rev 17402)
@@ -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 <ebourg at apache.org>
+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 );
++    }
+ }
+




More information about the pkg-java-commits mailing list