You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by sd...@apache.org on 2013/02/21 06:30:31 UTC

svn commit: r1448516 - in /logging/chainsaw/trunk: HOWTOBUILD.txt pom.xml src/assembly/bin.xml

Author: sdeboy
Date: Thu Feb 21 05:30:31 2013
New Revision: 1448516

URL: http://svn.apache.org/r1448516
Log:
Updating maven-assembly-plugin to 2.4, adding ID, updating HOWTOBUILD to clarify a mainClass is required when executing osxappbundle:bundle

Modified:
    logging/chainsaw/trunk/HOWTOBUILD.txt
    logging/chainsaw/trunk/pom.xml
    logging/chainsaw/trunk/src/assembly/bin.xml

Modified: logging/chainsaw/trunk/HOWTOBUILD.txt
URL: http://svn.apache.org/viewvc/logging/chainsaw/trunk/HOWTOBUILD.txt?rev=1448516&r1=1448515&r2=1448516&view=diff
==============================================================================
--- logging/chainsaw/trunk/HOWTOBUILD.txt (original)
+++ logging/chainsaw/trunk/HOWTOBUILD.txt Thu Feb 21 05:30:31 2013
@@ -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.
 

Modified: logging/chainsaw/trunk/pom.xml
URL: http://svn.apache.org/viewvc/logging/chainsaw/trunk/pom.xml?rev=1448516&r1=1448515&r2=1448516&view=diff
==============================================================================
--- logging/chainsaw/trunk/pom.xml (original)
+++ logging/chainsaw/trunk/pom.xml Thu Feb 21 05:30:31 2013
@@ -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>

Modified: logging/chainsaw/trunk/src/assembly/bin.xml
URL: http://svn.apache.org/viewvc/logging/chainsaw/trunk/src/assembly/bin.xml?rev=1448516&r1=1448515&r2=1448516&view=diff
==============================================================================
--- logging/chainsaw/trunk/src/assembly/bin.xml (original)
+++ logging/chainsaw/trunk/src/assembly/bin.xml Thu Feb 21 05:30:31 2013
@@ -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>