You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by pp...@apache.org on 2009/04/08 11:00:28 UTC

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

Author: ppoddar
Date: Wed Apr  8 09:00:28 2009
New Revision: 763147

URL: http://svn.apache.org/viewvc?rev=763147&view=rev
Log:
Skip compiling JDK6 dependent class till we figure out conditional compilation

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=763147&r1=763146&r2=763147&view=diff
==============================================================================
--- openjpa/trunk/openjpa-persistence/pom.xml (original)
+++ openjpa/trunk/openjpa-persistence/pom.xml Wed Apr  8 09:00:28 2009
@@ -44,4 +44,18 @@
             <artifactId>geronimo-jpa_2.0_spec</artifactId>
         </dependency>
     </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+        		<groupId>org.apache.maven.plugins</groupId>
+        		<artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                	<excludes>
+                	   <exclude>**/AnnotationProcessor6.java</exclude>
+                	</excludes>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    
 </project>