You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by st...@apache.org on 2012/10/23 22:11:32 UTC

svn commit: r1401427 - /incubator/ctakes/trunk/pom.xml

Author: stevenbethard
Date: Tue Oct 23 20:11:32 2012
New Revision: 1401427

URL: http://svn.apache.org/viewvc?rev=1401427&view=rev
Log:
Enables standard Maven test naming conventions (in addition to cTAKES-specific *Tests.java naming convention)

Modified:
    incubator/ctakes/trunk/pom.xml

Modified: incubator/ctakes/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/ctakes/trunk/pom.xml?rev=1401427&r1=1401426&r2=1401427&view=diff
==============================================================================
--- incubator/ctakes/trunk/pom.xml (original)
+++ incubator/ctakes/trunk/pom.xml Tue Oct 23 20:11:32 2012
@@ -477,7 +477,10 @@
 					<version>2.12</version>
 					<configuration>
 						<includes>
+							<include>**/Test*.java</include>
+							<include>**/*Test.java</include>
 							<include>**/*Tests.java</include>
+							<include>**/*TestCase.java</include>
 						</includes>
 					</configuration>
 				</plugin>