Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

3 Answers

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:

<baseDirectory>${artifactId}</baseDirectory>

which worked for me. Requires Maven assembly 2.2+.

share|improve this answer

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.

       <plugin>
         <artifactId>maven-assembly-plugin</artifactId>
            <configuration>
                <finalName>test</finalName>
                <descriptors>
                    <descriptor>src/assembly/assembly.xml</descriptor>
                </descriptors>
            </configuration>
            <executions>
                <execution>
                    <id>make-assembly</id>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
share|improve this answer

In pom.xml of your project, while configuring your assembly plug-in try to use "outputDirectory" property. For inst.:

<plugin>
  <artifactId>maven-assembly-plugin</artifactId>
  <configuration>
    <outputDirectory>some/path</outputDirectory>
......
  </configuration>
<plugin>
share|improve this answer
This does not solve the problem - it merely changes the output directory for the assembly from ./target to ./some/path which is not what was asked for. – Ian Dickinson Sep 22 '11 at 16:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.