You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2018/12/23 00:06:21 UTC

[maven-assembly-plugin] branch master updated: [MASSEMBLY-899] Make deprecated and non used of parameter useJvmChmod parameter (plugin is now 1.7)

This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-assembly-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new c4be15e  [MASSEMBLY-899] Make deprecated and non used of parameter useJvmChmod parameter (plugin is now 1.7)
c4be15e is described below

commit c4be15e869fcc09b4e40a358920f73aa37a34f08
Author: olivier lamy <ol...@apache.org>
AuthorDate: Sun Dec 23 10:06:08 2018 +1000

    [MASSEMBLY-899] Make deprecated and non used of parameter useJvmChmod parameter (plugin is now 1.7)
    
    Signed-off-by: olivier lamy <ol...@apache.org>
---
 .../apache/maven/plugins/assembly/mojos/AbstractAssemblyMojo.java  | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/apache/maven/plugins/assembly/mojos/AbstractAssemblyMojo.java b/src/main/java/org/apache/maven/plugins/assembly/mojos/AbstractAssemblyMojo.java
index f6a525f..bde09fd 100644
--- a/src/main/java/org/apache/maven/plugins/assembly/mojos/AbstractAssemblyMojo.java
+++ b/src/main/java/org/apache/maven/plugins/assembly/mojos/AbstractAssemblyMojo.java
@@ -346,11 +346,7 @@ public abstract class AbstractAssemblyMojo
     private boolean updateOnly;
 
     /**
-     * <p>
-     * will use the jvm chmod, this is available for user and all level group level will be ignored As of
-     * assembly-plugin 2.5, this flag is ignored for users of java7+
-     * </p>
-     *
+     * @deprecated Not used anymore and will be removed in future version
      * @since 2.2
      */
     @Parameter( property = "assembly.useJvmChmod", defaultValue = "false" )
@@ -840,6 +836,7 @@ public abstract class AbstractAssemblyMojo
     }
 
     @Override
+    @Deprecated
     public boolean isUseJvmChmod()
     {
         return useJvmChmod;