Closed loosebazooka closed 8 years ago
@patflynn @meltsufin plugin rewrite.
install comes up with this warning:
warning: [options] bootstrap class path not set in conjunction with -source 1.7
1 warning
Yeah cause you're probably building with java8. You can build with java7 or bypass that warning by specifying the bootstrap class in your build.gradle
compileJavaTask.options.bootClasspath = (new File(java7Home, "/jre/lib/rt.jar")).canonicalPath
LGTM
It appears that the Gradle Software Model for java projects is not moving forward. Change code back to classic plugin format - using extensions and project callbacks.
This code change affects how to configure the plugin now, the "appengine" configuration block is now under project, not model.
OLD : model { appengine { } }
NEW : appengine { }