Author: niallp
Date: Mon Feb 1 10:43:00 2010
New Revision: 905240
URL: http://svn.apache.org/viewvc?rev=905240&view=rev
Log:
Configure surefire plugin to run *Test.java and not test suites (at least one test was missing
because it wasn't in a suite)
Modified:
commons/proper/lang/branches/LANG_2_X/pom.xml
Modified: commons/proper/lang/branches/LANG_2_X/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/lang/branches/LANG_2_X/pom.xml?rev=905240&r1=905239&r2=905240&view=diff
==============================================================================
--- commons/proper/lang/branches/LANG_2_X/pom.xml (original)
+++ commons/proper/lang/branches/LANG_2_X/pom.xml Mon Feb 1 10:43:00 2010
@@ -405,9 +405,10 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
- <include>**/*TestSuite.java</include>
+ <include>**/*Test.java</include>
</includes>
<excludes>
+ <exclude>**/*TestSuite.java</exclude>
<exclude>**/AllLangTestSuite.java</exclude>
</excludes>
</configuration>
@@ -456,7 +457,7 @@
<artifactId>clirr-maven-plugin</artifactId>
<version>2.2.2</version>
<configuration>
- <comparisonVersion>2.3</comparisonVersion>
+ <comparisonVersion>2.4</comparisonVersion>
<minSeverity>info</minSeverity>
</configuration>
</plugin>
|