Hi,

i want to specify the name of one of three triggered assembly descriptors.
I have three different assemblies to build and the name of one should be 

templates.zip instead of test-0.8.7-SNAPSHOT-templates.zip

If i declare the name with the <finalName> i define the element of all 
assemblies.
Is there a way to declare the finalName in the assembly-descriptor?
I dont want to use an extra profile.


assembly-plugin in my pom
...
<plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>attached</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <descriptors>
                        <descriptor>src\main\assembly\a.xml</descriptor>
                        <descriptor>src\main\assembly\b.xml</descriptor>
                        <descriptor>src\main\assembly\c.xml</descriptor>
                    </descriptors>
                </configuration>
            </plugin>
...

__
regards
Martin Ritz

Reply via email to