You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2020/04/18 10:19:52 UTC

[maven-assembly-plugin] 02/02: MASSEMBLY-922: Remove property names from UID/GID overrides.

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

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

commit 83c664b105dcc4a2ae756bb31d06ce5232897573
Author: Vaclav Haisman <vh...@gmail.com>
AuthorDate: Mon Dec 30 23:44:14 2019 +0100

    MASSEMBLY-922: Remove property names from UID/GID overrides.
---
 .../apache/maven/plugins/assembly/mojos/AbstractAssemblyMojo.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 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 9310439..2766a33 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
@@ -407,26 +407,26 @@ public abstract class AbstractAssemblyMojo extends AbstractMojo implements Assem
     /**
      * Override of user ID in archive type which can store it.
      */
-    @Parameter( property = "assembly.overrideUid" )
+    @Parameter
     private Integer overrideUid;
 
     /**
      * Override of user name in archive type which can store it.
      */
-    @Parameter( property = "assembly.overrideUserName" )
+    @Parameter
     private String overrideUserName;
 
 
     /**
      * Override of group ID in archive type which can store it.
      */
-    @Parameter( property = "assembly.overrideGid" )
+    @Parameter
     private Integer overrideGid;
 
     /**
      * Override of group name in archive type which can store it.
      */
-    @Parameter( property = "assembly.overrideGroupName" )
+    @Parameter
     private String overrideGroupName;