You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@any23.apache.org by si...@apache.org on 2012/01/15 18:37:55 UTC

svn commit: r1231709 - in /incubator/any23/trunk: core/pom.xml pom.xml

Author: simonetripodi
Date: Sun Jan 15 17:37:55 2012
New Revision: 1231709

URL: http://svn.apache.org/viewvc?rev=1231709&view=rev
Log:
managed the appassembler-maven-plugin shared settings

Modified:
    incubator/any23/trunk/core/pom.xml
    incubator/any23/trunk/pom.xml

Modified: incubator/any23/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/core/pom.xml?rev=1231709&r1=1231708&r2=1231709&view=diff
==============================================================================
--- incubator/any23/trunk/core/pom.xml (original)
+++ incubator/any23/trunk/core/pom.xml Sun Jan 15 17:37:55 2012
@@ -168,23 +168,20 @@
             <goals>
               <goal>assemble</goal>
             </goals>
-            <configuration>
-              <repositoryLayout>flat</repositoryLayout>
-              <repositoryName>lib</repositoryName>
-              <extraJvmArguments>-Xms500m -Xmx500m -XX:PermSize=128m -XX:-UseGCOverheadLimit</extraJvmArguments>
-              <programs>
-                <program>
-                  <mainClass>org.apache.any23.cli.Rover</mainClass>
-                  <name>any23</name>
-                </program>
-                <program>
-                  <mainClass>org.apache.any23.cli.ToolRunner</mainClass>
-                  <name>any23tools</name>
-                </program>
-              </programs>
-            </configuration>
           </execution>
         </executions>
+        <configuration>
+          <programs>
+            <program>
+              <mainClass>org.apache.any23.cli.Rover</mainClass>
+              <name>any23</name>
+            </program>
+            <program>
+              <mainClass>org.apache.any23.cli.ToolRunner</mainClass>
+              <name>any23tools</name>
+            </program>
+          </programs>
+        </configuration>
       </plugin>
 
       <!-- Generates the distribution package -->

Modified: incubator/any23/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/pom.xml?rev=1231709&r1=1231708&r2=1231709&view=diff
==============================================================================
--- incubator/any23/trunk/pom.xml (original)
+++ incubator/any23/trunk/pom.xml Sun Jan 15 17:37:55 2012
@@ -484,6 +484,11 @@
           <groupId>org.codehaus.mojo</groupId>
           <artifactId>appassembler-maven-plugin</artifactId>
           <version>1.1.1</version>
+          <configuration>
+            <repositoryLayout>flat</repositoryLayout>
+            <repositoryName>lib</repositoryName>
+            <extraJvmArguments>-Xms500m -Xmx500m -XX:PermSize=128m -XX:-UseGCOverheadLimit</extraJvmArguments>
+          </configuration>
         </plugin>
 
         <plugin>