Strange thing is: my dependencies are like to one you descibe but my builds
are not re-run.

On 6/21/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