You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directmemory.apache.org by ol...@apache.org on 2012/02/20 22:41:56 UTC

svn commit: r1291459 - in /incubator/directmemory/trunk: directmemory-cache/pom.xml integrations/solr/pom.xml pom.xml serializers/msgpack/pom.xml serializers/protostuff/pom.xml

Author: olamy
Date: Mon Feb 20 21:41:55 2012
New Revision: 1291459

URL: http://svn.apache.org/viewvc?rev=1291459&view=rev
Log:
avoid too much repetition of the same maven-surefire-plugin configure

Modified:
    incubator/directmemory/trunk/directmemory-cache/pom.xml
    incubator/directmemory/trunk/integrations/solr/pom.xml
    incubator/directmemory/trunk/pom.xml
    incubator/directmemory/trunk/serializers/msgpack/pom.xml
    incubator/directmemory/trunk/serializers/protostuff/pom.xml

Modified: incubator/directmemory/trunk/directmemory-cache/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/directmemory-cache/pom.xml?rev=1291459&r1=1291458&r2=1291459&view=diff
==============================================================================
--- incubator/directmemory/trunk/directmemory-cache/pom.xml (original)
+++ incubator/directmemory/trunk/directmemory-cache/pom.xml Mon Feb 20 21:41:55 2012
@@ -84,13 +84,6 @@ under the License.
         </executions>
       </plugin>
 
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <argLine>-Xmx512m -Xms512m -XX:MaxDirectMemorySize=512m</argLine>
-        </configuration>
-      </plugin>
     </plugins>
   </build>
 

Modified: incubator/directmemory/trunk/integrations/solr/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/integrations/solr/pom.xml?rev=1291459&r1=1291458&r2=1291459&view=diff
==============================================================================
--- incubator/directmemory/trunk/integrations/solr/pom.xml (original)
+++ incubator/directmemory/trunk/integrations/solr/pom.xml Mon Feb 20 21:41:55 2012
@@ -56,14 +56,6 @@ under the License.
         </configuration>
       </plugin>
 
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <version>2.9</version>
-        <configuration>
-          <argLine>-Xmx512m -Xms512m -XX:MaxDirectMemorySize=512m</argLine>
-        </configuration>
-      </plugin>
     </plugins>
   </build>
 

Modified: incubator/directmemory/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/pom.xml?rev=1291459&r1=1291458&r2=1291459&view=diff
==============================================================================
--- incubator/directmemory/trunk/pom.xml (original)
+++ incubator/directmemory/trunk/pom.xml Mon Feb 20 21:41:55 2012
@@ -333,6 +333,9 @@ under the License.
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-surefire-plugin</artifactId>
           <version>2.12</version>
+          <configuration>
+            <argLine>-Xmx512m -Xms512m -XX:MaxDirectMemorySize=512m</argLine>
+          </configuration>
         </plugin>
         <plugin>
           <groupId>org.codehaus.mojo</groupId>

Modified: incubator/directmemory/trunk/serializers/msgpack/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/serializers/msgpack/pom.xml?rev=1291459&r1=1291458&r2=1291459&view=diff
==============================================================================
--- incubator/directmemory/trunk/serializers/msgpack/pom.xml (original)
+++ incubator/directmemory/trunk/serializers/msgpack/pom.xml Mon Feb 20 21:41:55 2012
@@ -69,16 +69,6 @@ under the License.
       </resource>
     </resources>
 
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <version>2.9</version>
-        <configuration>
-          <argLine>-Xmx512m -Xms512m -XX:MaxDirectMemorySize=512m</argLine>
-        </configuration>
-      </plugin>
-    </plugins>
   </build>
 
 </project>

Modified: incubator/directmemory/trunk/serializers/protostuff/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/serializers/protostuff/pom.xml?rev=1291459&r1=1291458&r2=1291459&view=diff
==============================================================================
--- incubator/directmemory/trunk/serializers/protostuff/pom.xml (original)
+++ incubator/directmemory/trunk/serializers/protostuff/pom.xml Mon Feb 20 21:41:55 2012
@@ -83,10 +83,6 @@ under the License.
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
-        <version>2.9</version>
-        <configuration>
-          <argLine>-Xmx512m -Xms512m -XX:MaxDirectMemorySize=512m</argLine>
-        </configuration>
       </plugin>
     </plugins>
   </build>