Skip to content

Commit

Permalink
[MASSEMBLY-843] Make finalName parameter as writable
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed May 3, 2023
1 parent b2c52bd commit 5c492d0
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,11 @@ public abstract class AbstractAssemblyMojo extends AbstractMojo implements Assem
private File outputDirectory;

/**
* The filename of the assembled distribution file.
* The filename of the assembled distribution file.<br/>
* <b>NOTE:</b> This parameter has only impact on name in project target directory,
* installed/deployed artifacts will follow convention for artifact names.
*/
@Parameter(defaultValue = "${project.build.finalName}", required = true, readonly = true)
@Parameter(defaultValue = "${project.build.finalName}", required = true)
private String finalName;

/**
Expand Down

0 comments on commit 5c492d0

Please sign in to comment.