We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2c52bd commit 5c492d0Copy full SHA for 5c492d0
1 file changed
src/main/java/org/apache/maven/plugins/assembly/mojos/AbstractAssemblyMojo.java
@@ -130,9 +130,11 @@ public abstract class AbstractAssemblyMojo extends AbstractMojo implements Assem
130
private File outputDirectory;
131
132
/**
133
- * The filename of the assembled distribution file.
+ * The filename of the assembled distribution file.<br/>
134
+ * <b>NOTE:</b> This parameter has only impact on name in project target directory,
135
+ * installed/deployed artifacts will follow convention for artifact names.
136
*/
- @Parameter(defaultValue = "${project.build.finalName}", required = true, readonly = true)
137
+ @Parameter(defaultValue = "${project.build.finalName}", required = true)
138
private String finalName;
139
140
0 commit comments