I am using the assembly plugin to tar.gz up a package. I am trying to change the root output directory from ${project.name}-{$project.version} to just ${project.name}, but cant seem to find the configuration option for that anywhere. Anyone know if this is possible?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I recently had the same requirement. According to section Using an Alternative Assembly Base Directory in the docs, you can add the following directive to your assembly XML file:
which worked for me. Requires Maven assembly 2.2+. |
|||
|
|
|
I known this is an old topic but since I've got the same problem. You can change the name of the root directory by filling the "finalName" property of your assembly plug-in in your pom.xml.
|
|||
|
|
|
In pom.xml of your project, while configuring your assembly plug-in try to use "outputDirectory" property. For inst.:
|
|||
|