You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by mi...@apache.org on 2009/04/15 17:26:54 UTC

svn commit: r765239 - /openjpa/trunk/openjpa-persistence/pom.xml

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>