stianh / gradle-release-plugin

Gradle plugin for automated release management.
54 stars 14 forks source link

Remove dynamic properties #27

Closed ari closed 12 years ago

ari commented 12 years ago

Dynamic properties are deprecated: http://gradle.org/docs/current/dsl/org.gradle.api.plugins.ExtraPropertiesExtension.html Deprecated dynamic property: "defaultProject" on "root project 'buildSrc'", value: "build_5mgvj31rurcj5uts...". Deprecated dynamic property: "fixedProject" on "root project 'buildSrc'", value: "build_5mgvj31rurcj5uts...". Deprecated dynamic property: "sonatypeUsername" on "root project 'buildSrc'", value: "". Deprecated dynamic property: "sonatypePassword" on "root project 'buildSrc'", value: "". Deprecated dynamic property: "installer" on "root project 'buildSrc'", value: "org.gradle.api.publica...". Deprecated dynamic property: "deployer" on "root project 'buildSrc'", value: "org.gradle.api.publica...".

Proper syntax is something like

project.ext.set...

But as I don't understand what these properties are even doing, I'm not game to fix them.

stigkj commented 12 years ago

Thanks for the reminder!