On 1/16/07, berndq <[EMAIL PROTECTED]> wrote:
Hi,

I did not get an answer on the users list so I try it here:


I use the assembly plugin to create multiple assemblies from a multi
module project:

           <descriptors>
             <descriptor>src/main/assembly/server.xml</descriptor>
             <descriptor>src/main/assembly/client.xml</descriptor>
           </descriptors>

Cant you just define multiple configurations, where each configuration
has the settings you want rather than lump them in the one section?

Something like:
       <plugin>
         <groupId/>
         <artifactId/>
         <version/>
         <executions>
           <execution>
             <id/>
             <phase/>
             <goals/>
             <configuration>
           <descriptors>
             <descriptor>src/main/assembly/client.xml</descriptor>
           </descriptors>
             </configuration>
           </execution>
           <execution>
             <id/>
             <phase/>
             <goals/>
             <configuration>
           <descriptors>
             <descriptor>src/main/assembly/server.xml</descriptor>
           </descriptors>
             </configuration>
           </execution>
         </executions>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to