Updating maven-assembly-plugin to 2.4, adding ID, updating HOWTOBUILD to clarify a mainClass is required when executing osxappbundle:bundle
Project: http://git-wip-us.apache.org/repos/asf/logging-chainsaw/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-chainsaw/commit/7e8c5835 Tree: http://git-wip-us.apache.org/repos/asf/logging-chainsaw/tree/7e8c5835 Diff: http://git-wip-us.apache.org/repos/asf/logging-chainsaw/diff/7e8c5835 Branch: refs/heads/master Commit: 7e8c5835b427ea916536c3f28c501ea080b096e2 Parents: e55aeec Author: Scott Deboy <[email protected]> Authored: Thu Feb 21 05:30:31 2013 +0000 Committer: Scott Deboy <[email protected]> Committed: Thu Feb 21 05:30:31 2013 +0000 ---------------------------------------------------------------------- HOWTOBUILD.txt | 2 +- pom.xml | 2 +- src/assembly/bin.xml | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-chainsaw/blob/7e8c5835/HOWTOBUILD.txt ---------------------------------------------------------------------- diff --git a/HOWTOBUILD.txt b/HOWTOBUILD.txt index ebbd4bb..99c14d2 100644 --- a/HOWTOBUILD.txt +++ b/HOWTOBUILD.txt @@ -38,7 +38,7 @@ target/appassembler/bin/chainsaw.bat [OSX] You can use the *nix steps above, or go one extra step for a nicer OSX experience -mvn package osxappbundle:bundle +mvn package osxappbundle:bundle -DmainClass=org.apache.log4j.chainsaw.LogUI This will create an OSX distribution, look inside the target folder for the packaged OSX application and .dmg distribution. You can drag the application to your /Applications folder, or just double click it from the target folder. http://git-wip-us.apache.org/repos/asf/logging-chainsaw/blob/7e8c5835/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index c47c34d..182eab5 100644 --- a/pom.xml +++ b/pom.xml @@ -245,7 +245,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> - <version>2.2-beta-5</version> + <version>2.4</version> <executions> <execution> <id>make-assembly</id> http://git-wip-us.apache.org/repos/asf/logging-chainsaw/blob/7e8c5835/src/assembly/bin.xml ---------------------------------------------------------------------- diff --git a/src/assembly/bin.xml b/src/assembly/bin.xml index 04ece7c..a108121 100644 --- a/src/assembly/bin.xml +++ b/src/assembly/bin.xml @@ -20,7 +20,8 @@ bin assembly to have any suffix on its name. Other assemblies need their Id suffixed, but this one doesn't <id>bin</id> --> - <formats> + <id>bin</id> + <formats> <format>zip</format> <format>tar.gz</format> </formats>
