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 fcc6dcb1..466234d2 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 @@ -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.
+ * NOTE: 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; /**