-
Notifications
You must be signed in to change notification settings - Fork 40
v0.2.0 + remove all traces of Gradle Software Model #62
Conversation
@patflynn @meltsufin plugin rewrite. |
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 { }
4f96ecf
to
61bf4dd
Compare
1. Signing is handled by the nexus plugin 2. Make sure you run --no-daemon when doing an upload
@@ -18,7 +18,7 @@ sourceCompatibility = JavaVersion.VERSION_1_7 | |||
targetCompatibility = JavaVersion.VERSION_1_7 | |||
|
|||
group = 'com.google.cloud.tools' | |||
version = '0.1.2-SNAPSHOT' | |||
version = '0.2.0-SNAPSHOT' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are we still on 0.2.0 if these are 1.0 RC ready?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For Maven, I was thinking next release would be 1.0.0.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mostly just because I change a lot of the internals and would like to play around with it for a week before switching to 1.0.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
or does 1.0.0-rc basically imply the same thing?
install comes up with this 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
|
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 {
}