Hi,
split the plugin configuration in distinct executions:
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>execution-one</id>
<goals>
<goal>attached</goal>
</goals>
<configuration>
<finalName>customName</finalName>
<appendAssemblyId>false</appendAssemblyId>
<descriptor>src\main\assembly\a.xml</descriptor>
</configuration>
</execution>
<execution>
<id>execution-two</id>
<goals>
<goal>attached</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src\main\assembly\b.xml</descriptor>
<descriptor>src\main\assembly\c.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
-Tim
Ritz, Martin schrieb:
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
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]