Author: mikedd
Date: Wed Apr 15 15:26:54 2009
New Revision: 765239
URL: http://svn.apache.org/viewvc?rev=765239&view=rev
Log:
OPENJPA-1010. Exclude test class for Java 5 compilers
Modified:
openjpa/trunk/openjpa-persistence/pom.xml
Modified: openjpa/trunk/openjpa-persistence/pom.xml
URL:
http://svn.apache.org/viewvc/openjpa/trunk/openjpa-persistence/pom.xml?rev=765239&r1=765238&r2=765239&view=diff
==============================================================================
--- openjpa/trunk/openjpa-persistence/pom.xml (original)
+++ openjpa/trunk/openjpa-persistence/pom.xml Wed Apr 15 15:26:54 2009
@@ -58,10 +58,12 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
- <excludes>
-
<exclude>**/AnnotationProcessor6.java</exclude>
-
<exclude>**/TestCanonicalMetamodelGeneration.java</exclude>
- </excludes>
+ <excludes>
+ <exclude>**/AnnotationProcessor6.java</exclude>
+ </excludes>
+ <testExcludes>
+
<testExclude>**/TestCanonicalMetamodelGeneration.java</testExclude>
+ </testExcludes>
</configuration>
</plugin>
</plugins>