On 22/09/2010, at 8:55 PM, Scott Deboy wrote:
> I've updated the Chainsaw pom.xml but some of the plugin updates mean you
> have to specify a bit more to get everything built...specifically, I have to
> specify assembly:assembly now to get the standalone zip built...
>
> Anyone familiar enough with maven assembly plugin to figure out what needs to
> be done to get standalone.zip built automatically?
>
> Here's the command I use to build Chainsaw:
>
> mvn clean site:site assembly:assembly package install osxappbundle:bundle
something like this in the build section of the POM (same for bundle should
work if it attaches):
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>create-distro</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/main/assembly/bin.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
Cheers,
Brett
--
Brett Porter
[email protected]
http://brettporter.wordpress.com/
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]