Use the new style system property configuration for the surefire plugin.


git-svn-id: https://svn.apache.org/repos/asf/abdera/java/trunk@1452130 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/adapters/jcr/pom.xml b/adapters/jcr/pom.xml
index c90e7ab..e83bd94 100644
--- a/adapters/jcr/pom.xml
+++ b/adapters/jcr/pom.xml
@@ -91,12 +91,9 @@
       <plugin>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
-          <systemProperties>
-            <property>
-              <name>derby.stream.error.file</name>
-              <value>${project.build.directory}/derby.log</value>
-            </property>
-          </systemProperties>
+          <systemPropertyVariables>
+            <derby.stream.error.file>${project.build.directory}/derby.log</derby.stream.error.file>
+          </systemPropertyVariables>
         </configuration>
       </plugin>
     </plugins>
diff --git a/pom.xml b/pom.xml
index 8cd26fb..2588e6e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -226,7 +226,7 @@
         <plugin>

           <groupId>org.apache.maven.plugins</groupId>

           <artifactId>maven-surefire-plugin</artifactId>

-          <version>2.6</version>

+          <version>2.13</version>

           <configuration>

             <excludes>

               <exclude>**/*TestSuite*</exclude>