GoogleCloudPlatform / appengine-maven-plugin

Automatically exported from code.google.com/p/appengine-maven-plugin
Apache License 2.0
19 stars 21 forks source link

pom.xml should requires java version 1.7 #56

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
pom.xml should require Java version 1.7, otherwise the install target will fail 
with:

[ERROR] error: Exception thrown while constructing Processor object: 
com/google/appengine/tools/compilation/DatastoreCallbacksProcessor : 
Unsupported major.minor version 51.0

See the patch below:
diff --git a/pom.xml b/pom.xml
index 3ac565d..2654339 100644
--- a/pom.xml
+++ b/pom.xml
@@ -203,7 +203,7 @@
                                     <version>3.0.0</version>
                                 </requireMavenVersion>
                                 <requireJavaVersion>
-                                    <version>1.6</version>
+                                    <version>1.7</version>
                                 </requireJavaVersion>
                                 <requireReleaseDeps />
                                 <bannedDependencies>

Original issue reported on code.google.com by pro...@google.com on 13 Jun 2014 at 10:07

GoogleCodeExporter commented 9 years ago
Fixed!

Original comment by l...@google.com on 13 Jun 2014 at 11:08