You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jd...@apache.org on 2008/07/23 01:29:57 UTC

svn commit: r678943 - /maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0098/pom.xml

Author: jdcasey
Date: Tue Jul 22 16:29:56 2008
New Revision: 678943

URL: http://svn.apache.org/viewvc?rev=678943&view=rev
Log:
Make the export of the test.property check property explicit now that surefire (2.4.3) doesn't export all maven sysprops.

Modified:
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0098/pom.xml

Modified: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0098/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0098/pom.xml?rev=678943&r1=678942&r2=678943&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0098/pom.xml (original)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0098/pom.xml Tue Jul 22 16:29:56 2008
@@ -12,4 +12,20 @@
       <version>3.8.1</version>
     </dependency>
   </dependencies>
+  
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <systemProperties>
+            <property>
+              <name>test.property</name>
+              <value>${test.property}</value>
+            </property>
+          </systemProperties>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>