Skip to content

Commit

Permalink
[MASSEMBLY-1004] Remove ignored and deprecated parameter - useJvmChmod
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed Nov 8, 2023
1 parent e40f6c3 commit e2af63a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,6 @@ public interface AssemblerConfigurationSource {
*/
boolean isUpdateOnly();

/**
* @return Use JVM chmod yes/no.
*/
boolean isUseJvmChmod();

/**
* @return Ignore permissions yes/no.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,13 +343,6 @@ public abstract class AbstractAssemblyMojo extends AbstractMojo implements Assem
@Parameter(property = "assembly.updateOnly", defaultValue = "false")
private boolean updateOnly;

/**
* @since 2.2
* @deprecated Not used anymore and will be removed in future version
*/
@Parameter(property = "assembly.useJvmChmod", defaultValue = "false")
private boolean useJvmChmod;

/**
* <p>
* Set to <code>true</code> in order to avoid all chmod calls.
Expand Down Expand Up @@ -778,12 +771,6 @@ public boolean isUpdateOnly() {
return updateOnly;
}

@Override
@Deprecated
public boolean isUseJvmChmod() {
return useJvmChmod;
}

@Override
public boolean isIgnorePermissions() {
return ignorePermissions;
Expand Down

0 comments on commit e2af63a

Please # to comment.