you can run maven-assembly-plugin multiple times

 ...
  <build>
    ...
    <plugins>
       <plugin>
          <artifactId>maven-assembly-plugin</artifactId>
          <executions>
            <execution>
              <phase>package</phase>
              <configuration>
                  ...
              </configuration>
              <goals>
                <goal>assembly</goal>
              </goals>
            </execution>
            <execution>
              <phase>package</phase>
              <configuration>                    ...
              </configuration>
              <goals>
                <goal>assembly</goal>
              </goals>
            </execution>

          </executions>
        </plugin>
     </plugins>
  </build>

*Conclusion*



On 12/10/05, Jochen Wiedmann <[EMAIL PROTECTED]> wrote:
>
> Henry Isidro wrote:
>
> > You can override them by creating an assembly descriptor and placing bin
> > or src in the <id> tag.
>
> I see that I can specify *one* such descriptor via the plugins
> "descriptor" property. But what, if I want to override both?
>
>
> > Haven't tried this yet, but you can use executions to assemble a bin
> > then an src.
>
> What are executions?
>
>
> Regards,
>
> Jochen
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to