Author: rgoers
Date: Sun Aug 14 20:55:55 2011
New Revision: 1157664

URL: http://svn.apache.org/viewvc?rev=1157664&view=rev
Log:
Change surefire plugin configs to use systemPropertyVariables

Modified:
    commons/proper/vfs/trunk/pom.xml
    commons/proper/vfs/trunk/sandbox/pom.xml

Modified: commons/proper/vfs/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/pom.xml?rev=1157664&r1=1157663&r2=1157664&view=diff
==============================================================================
--- commons/proper/vfs/trunk/pom.xml (original)
+++ commons/proper/vfs/trunk/pom.xml Sun Aug 14 20:55:55 2011
@@ -146,18 +146,6 @@
           <artifactId>maven-checkstyle-plugin</artifactId>
           <version>2.7</version>
         </plugin>
-        <!-- <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-release-plugin</artifactId>
-          <version>2.2.1</version>
-          <configuration>
-            <preparationGoals>clean verify scm:add scm:checkin 
-Dinclude="RELEASE-NOTES.txt" -Dmessage="add release notes"</preparationGoals>
-            <completionGoals>exec:exec scm:commit -Dexec.executable=svn 
-Dexec.args="delete RELEASE-NOTES.txt" -Dmessage="remove release 
notes"</completionGoals>
-            <useReleaseProfile>false</useReleaseProfile>
-            <goals>deploy</goals>
-            <arguments>-Papache-release</arguments>
-          </configuration>
-        </plugin> -->
       </plugins>
     </pluginManagement>
     <plugins>

Modified: commons/proper/vfs/trunk/sandbox/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/sandbox/pom.xml?rev=1157664&r1=1157663&r2=1157664&view=diff
==============================================================================
--- commons/proper/vfs/trunk/sandbox/pom.xml (original)
+++ commons/proper/vfs/trunk/sandbox/pom.xml Sun Aug 14 20:55:55 2011
@@ -115,16 +115,10 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
-          <systemProperties>
-            <property>
-              <name>test.basedir</name>
-              <value>../core/target/test-classes/test-data</value>
-            </property>
-            <property>
-              <name>test.basedir.res</name>
-              <value>test-data</value>
-            </property>
-          </systemProperties>
+          <systemPropertyVariables>
+            <test.basedir>../core/target/test-classes/test-data</test.basedir>
+            <test.basedir.res>test-data</test.basedir.res>
+          </systemPropertyVariables>
         </configuration>
       </plugin>
     </plugins>
@@ -141,20 +135,11 @@
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-surefire-plugin</artifactId>
             <configuration>
-              <systemProperties>
-                <property>
-                  <name>test.basedir</name>
-                  <value>../core/target/test-classes/test-data</value>
-                </property>
-                <property>
-                  <name>test.basedir.res</name>
-                  <value>test-data</value>
-                </property>
-                <property>
-                  <name>test.http.uri</name>
-                  <value>${test.smb.uri}</value>
-                </property>
-              </systemProperties>
+              <systemPropertyVariables>
+                
<test.basedir>../core/target/test-classes/test-data</test.basedir>
+                <test.basedir.res>test-data</test.basedir.res>
+                <test.smb.uri>${test.smb.uri}</test.smb.uri>
+              </systemPropertyVariables>
             </configuration>
           </plugin>
         </plugins>


Reply via email to