In older versions of the plugin, you can use <finalName> , but this no longer exists. Right now I'm getting projectName-version-jar-with-dependencies.jar, and it would be nice to change that.
<finalName>
The finalName parameter is specified in the build section of the project, and not in the plugin configuration.
finalName
so essential:
<build> <finalName>xyz</finalName> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> .... </plugin> </plugins> </build>
The build plugin gets the final name from reading the ${project.build.finalName} property and is the readonly parameter.
${project.build.finalName}
At least this is what the code says: http://svn.apache.org/viewvc/maven/plugins/tags/maven-assembly-plugin-3.0.0/src/main/java/org/apache/maven /plugins/assembly/mojos/AbstractAssemblyMojo.java?view=markup
Source: https://habr.com/ru/post/1269831/More articles:Android Room is partially updated, if you exit - androidAndroid @Update save library not working - androidClojure - Applying a function to a vector of vectors - clojureAngular 4 http get with parameters - difference between search and parameters - angularDelete columns in the Tidean way - rError in request from Google Appengine to pub sub - javaDisplay html as a tree - openerpAndroid Admob error: Failed to load the advertisement: 0 HTTP response code: 403 - androidUsing the extends keyword in a companion object definition - scalahttps://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1269836/stateful-lstm-fails-to-predict-due-to-batchsize-issue&usg=ALkJrhhwyPvIAJyMdDAYOFS-6n52XtjrkAAll Articles