Upgrade Gradle plugin’s ID so it’s suitable for the Plugin Portal

Gradle’s plugin portal requires each plugin’s ID to be in a namespace.
Our existing ID, spring-boot, does not meet this requirement. This
commit changes the plugin’s ID to org.springframework.boot.spring-boot.
Note that, as is recommended [1], the plugin’s ID does not include
“gradle”.

See gh-1567

[1] http://plugins.gradle.org/submit
This commit is contained in:
Andy Wilkinson
2015-03-19 14:22:31 +00:00
parent 0f51a53691
commit b1c0a7cda4
25 changed files with 26 additions and 26 deletions

View File

@@ -21,7 +21,7 @@ buildscript {
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
apply plugin: 'org.springframework.boot.spring-boot'
mainClassName = "sample.ui.SampleWebUiApplication"