IMO, it would be cleaner if we embedded the manifest info in the assembly
descriptor...then we could always support that manifest section in an
external descriptor component, for shared cases...

It's not available in the assembly descriptor now, but I've been thinking
about that for awhile now (probably not a good idea to put it in an eventual
2.2, though).

-john

On 1/16/07, Barrie Treloar <[EMAIL PROTECTED]> wrote:

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