Commit f137ec6a authored by Andy Wilkinson's avatar Andy Wilkinson

Merge branch '1.5.x'

parents 8b61d151 846f264d
...@@ -182,7 +182,7 @@ the `spring-boot` plugin: ...@@ -182,7 +182,7 @@ the `spring-boot` plugin:
classpath("org.springframework.boot:spring-boot-gradle-plugin:{spring-boot-version}") classpath("org.springframework.boot:spring-boot-gradle-plugin:{spring-boot-version}")
} }
} }
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
---- ----
If you are using a milestone or snapshot release you will also need to add appropriate If you are using a milestone or snapshot release you will also need to add appropriate
......
...@@ -387,7 +387,7 @@ With Gradle, the equivalent configuration would be: ...@@ -387,7 +387,7 @@ With Gradle, the equivalent configuration would be:
[source,groovy,indent=0,subs="verbatim,quotes,attributes"] [source,groovy,indent=0,subs="verbatim,quotes,attributes"]
---- ----
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
springBoot { springBoot {
executable = true executable = true
......
...@@ -240,7 +240,7 @@ endif::release[] ...@@ -240,7 +240,7 @@ endif::release[]
} }
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
jar { jar {
baseName = 'myproject' baseName = 'myproject'
......
...@@ -257,7 +257,7 @@ endif::[] ...@@ -257,7 +257,7 @@ endif::[]
} }
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
repositories { repositories {
ifeval::["{spring-boot-repo}" != "release"] ifeval::["{spring-boot-repo}" != "release"]
......
/*
* Copyright 2012-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.boot.gradle;
import org.gradle.tooling.ProjectConnection;
import org.junit.Rule;
import org.junit.Test;
import org.springframework.boot.test.rule.OutputCapture;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Tests for using the old, deprecated plugin ID.
*
* @author Andy Wilkinson
*/
public class DeprecatedPluginTests {
private ProjectConnection project;
private static final String BOOT_VERSION = Versions.getBootVersion();
@Rule
public OutputCapture output = new OutputCapture();
@Test
public void deprecatedIdWorksAndLogsAWarning() throws Exception {
this.project = new ProjectCreator().createProject("deprecated-plugin");
this.project.newBuild().forTasks("build")
.withArguments("-PbootVersion=" + BOOT_VERSION, "--stacktrace").run();
assertThat(this.output.toString())
.contains("The plugin id 'spring-boot' is deprecated");
}
}
...@@ -8,7 +8,7 @@ buildscript { ...@@ -8,7 +8,7 @@ buildscript {
} }
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
repositories { repositories {
mavenLocal() mavenLocal()
......
...@@ -9,7 +9,7 @@ buildscript { ...@@ -9,7 +9,7 @@ buildscript {
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'maven' apply plugin: 'maven'
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
jar { jar {
baseName = 'classifier-extension' baseName = 'classifier-extension'
......
...@@ -9,7 +9,7 @@ buildscript { ...@@ -9,7 +9,7 @@ buildscript {
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'maven' apply plugin: 'maven'
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
jar { jar {
baseName = 'classifier' baseName = 'classifier'
......
buildscript {
repositories {
mavenLocal()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${project.bootVersion}")
}
}
apply plugin: 'spring-boot'
group = 'deprecated-plugin'
version = '0.0.0'
repositories {
mavenLocal()
mavenCentral()
}
springBoot {
mainClass 'com.example.Main'
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter'
}
\ No newline at end of file
...@@ -12,7 +12,7 @@ repositories { ...@@ -12,7 +12,7 @@ repositories {
mavenCentral() mavenCentral()
} }
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
apply plugin: 'java' apply plugin: 'java'
dependencies { dependencies {
......
...@@ -7,7 +7,7 @@ buildscript { ...@@ -7,7 +7,7 @@ buildscript {
} }
} }
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
group = 'flatdir' group = 'flatdir'
version = '0.0.0' version = '0.0.0'
......
...@@ -9,7 +9,7 @@ buildscript { ...@@ -9,7 +9,7 @@ buildscript {
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'maven' apply plugin: 'maven'
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
apply plugin: 'application' apply plugin: 'application'
group = 'installer' group = 'installer'
......
...@@ -9,7 +9,7 @@ buildscript { ...@@ -9,7 +9,7 @@ buildscript {
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'maven' apply plugin: 'maven'
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
group = 'installer' group = 'installer'
version = '0.0.0' version = '0.0.0'
...@@ -17,7 +17,7 @@ version = '0.0.0' ...@@ -17,7 +17,7 @@ version = '0.0.0'
install { install {
repositories.mavenInstaller { repositories.mavenInstaller {
pom.project { pom.project {
parent { parent {
groupId 'org.springframework.boot' groupId 'org.springframework.boot'
artifactId 'spring-boot-starter-parent' artifactId 'spring-boot-starter-parent'
version "${project.bootVersion}" version "${project.bootVersion}"
......
...@@ -9,7 +9,7 @@ buildscript { ...@@ -9,7 +9,7 @@ buildscript {
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'maven' apply plugin: 'maven'
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
group = 'installer' group = 'installer'
version = '0.0.0' version = '0.0.0'
......
...@@ -13,7 +13,7 @@ repositories { ...@@ -13,7 +13,7 @@ repositories {
mavenCentral() mavenCentral()
} }
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
apply plugin: 'java' apply plugin: 'java'
dependencies { dependencies {
......
...@@ -15,7 +15,7 @@ subprojects { ...@@ -15,7 +15,7 @@ subprojects {
} }
} }
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
repositories { repositories {
mavenLocal() mavenLocal()
......
...@@ -8,7 +8,7 @@ buildscript { ...@@ -8,7 +8,7 @@ buildscript {
} }
project(':projectA') { project(':projectA') {
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
repositories { repositories {
mavenLocal() mavenLocal()
} }
......
...@@ -8,7 +8,7 @@ buildscript { ...@@ -8,7 +8,7 @@ buildscript {
} }
project('main') { project('main') {
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
apply plugin: 'java' apply plugin: 'java'
repositories { repositories {
......
...@@ -7,7 +7,7 @@ buildscript { ...@@ -7,7 +7,7 @@ buildscript {
} }
} }
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
group = 'nojar' group = 'nojar'
version = '0.0.0' version = '0.0.0'
......
...@@ -12,7 +12,7 @@ repositories { ...@@ -12,7 +12,7 @@ repositories {
mavenCentral() mavenCentral()
} }
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
apply plugin: 'java' apply plugin: 'java'
dependencies { dependencies {
......
...@@ -10,7 +10,7 @@ buildscript { ...@@ -10,7 +10,7 @@ buildscript {
} }
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
repositories { repositories {
mavenLocal() mavenLocal()
......
...@@ -10,7 +10,7 @@ buildscript { ...@@ -10,7 +10,7 @@ buildscript {
} }
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
repositories { repositories {
mavenLocal() mavenLocal()
......
...@@ -22,7 +22,7 @@ dependencies { ...@@ -22,7 +22,7 @@ dependencies {
springBootStarter "org.springframework.boot:${project.starter}:${project.bootVersion}" springBootStarter "org.springframework.boot:${project.starter}:${project.bootVersion}"
} }
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
task checkCommonsLogging { task checkCommonsLogging {
doFirst { doFirst {
......
...@@ -14,10 +14,10 @@ repositories { ...@@ -14,10 +14,10 @@ repositories {
mavenCentral() mavenCentral()
} }
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
apply plugin: 'war' apply plugin: 'war'
dependencies { dependencies {
compile 'org.springframework.boot:spring-boot-starter-freemarker' compile 'org.springframework.boot:spring-boot-starter-freemarker'
providedRuntime "org.springframework.boot:spring-boot-starter-$servletContainer" providedRuntime "org.springframework.boot:spring-boot-starter-$servletContainer"
} }
......
...@@ -18,7 +18,7 @@ buildscript { ...@@ -18,7 +18,7 @@ buildscript {
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'eclipse' apply plugin: 'eclipse'
apply plugin: 'idea' apply plugin: 'idea'
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
jar { jar {
baseName = 'spring-boot-sample-actuator' baseName = 'spring-boot-sample-actuator'
......
...@@ -23,7 +23,16 @@ ...@@ -23,7 +23,16 @@
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-neo4j</artifactId> <artifactId>spring-boot-starter-data-neo4j</artifactId>
</dependency> </dependency>
<!-- <dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-ogm-embedded-driver</artifactId>
<version>${neo4j-ogm.version}</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-ogm-bolt-driver</artifactId>
<version>${neo4j-ogm.version}</version>
</dependency> -->
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId> <artifactId>spring-boot-starter-test</artifactId>
......
...@@ -18,7 +18,7 @@ buildscript { ...@@ -18,7 +18,7 @@ buildscript {
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'eclipse' apply plugin: 'eclipse'
apply plugin: 'idea' apply plugin: 'idea'
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
jar { jar {
baseName = 'spring-boot-sample-simple' baseName = 'spring-boot-sample-simple'
......
...@@ -18,7 +18,7 @@ buildscript { ...@@ -18,7 +18,7 @@ buildscript {
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'eclipse' apply plugin: 'eclipse'
apply plugin: 'idea' apply plugin: 'idea'
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
jar { jar {
baseName = 'spring-boot-sample-profile' baseName = 'spring-boot-sample-profile'
......
...@@ -18,7 +18,7 @@ buildscript { ...@@ -18,7 +18,7 @@ buildscript {
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'eclipse' apply plugin: 'eclipse'
apply plugin: 'idea' apply plugin: 'idea'
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
jar { jar {
baseName = 'spring-boot-sample-simple' baseName = 'spring-boot-sample-simple'
......
...@@ -19,7 +19,7 @@ buildscript { ...@@ -19,7 +19,7 @@ buildscript {
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'eclipse-wtp' apply plugin: 'eclipse-wtp'
apply plugin: 'idea' apply plugin: 'idea'
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
apply plugin: 'war' apply plugin: 'war'
war { war {
......
...@@ -21,7 +21,7 @@ buildscript { ...@@ -21,7 +21,7 @@ buildscript {
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'eclipse' apply plugin: 'eclipse'
apply plugin: 'idea' apply plugin: 'idea'
apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot'
springBoot { springBoot {
classifier = 'exec' classifier = 'exec'
......
...@@ -34,7 +34,7 @@ import org.springframework.boot.loader.tools.Layouts; ...@@ -34,7 +34,7 @@ import org.springframework.boot.loader.tools.Layouts;
* two of them. E.g. * two of them. E.g.
* *
* <pre> * <pre>
* apply plugin: "spring-boot" * apply plugin: 'org.springframework.boot'
* springBoot { * springBoot {
* mainClass = 'org.demo.Application' * mainClass = 'org.demo.Application'
* layout = 'ZIP' * layout = 'ZIP'
......
/*
* Copyright 2012-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.boot.gradle.plugin;
import org.gradle.api.Project;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* {@link SpringBootPlugin} subclass that outputs a deprecation warning to direct people
* to use the new Gradle Plugin Portal-compatible ID {@code org.springframework.boot}.
*
* @author Andy Wilkinson
* @deprecated since 1.4.2 in favor of {@link SpringBootPlugin}
*/
@Deprecated
public class DeprecatedSpringBootPlugin extends SpringBootPlugin {
private static final Logger logger = LoggerFactory
.getLogger(DeprecatedSpringBootPlugin.class);
@Override
public void apply(Project project) {
logger.warn("The plugin id 'spring-boot' is deprecated. Please use "
+ "'org.springframework.boot' instead.");
super.apply(project);
}
}
implementation-class=org.springframework.boot.gradle.plugin.SpringBootPlugin implementation-class=org.springframework.boot.gradle.plugin.DeprecatedSpringBootPlugin
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment