you may want to try

http://maven.apache.org/plugins/maven-assembly-plugin/directory-inline-mojo.html

-D


On 6/20/06, Barrie Treloar <[EMAIL PROTECTED]> wrote:

> What about re-running of the build lifecycle.

If you are finding that your lifecyles are being re-rerun check
http://jira.codehaus.org/browse/MASSEMBLY-37.

You should not be using the "assembly" goal but instead the "attached"
goal (and dont specify a phase)

The pom should look like:
   <build>
       <pluginManagement>
           <plugins>
               <plugin>
                   <artifactId>maven-assembly-plugin</artifactId>
                   <configuration>
                       <descriptors>

<descriptor>src/main/assembly/bin.xml</descriptor>
                       </descriptors>
                   </configuration>
                   <executions>
                       <execution>
                           <id>package-assembly</id>
                           <goals>
                               <goal>attached</goal>
                           </goals>
                       </execution>
                   </executions>
               </plugin>

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


Reply via email to