Browse Source

Merge branch '1.4.x' into 1.5.x

pull/7902/head
Andy Wilkinson 9 years ago
parent
commit
8494635a05
  1. 29
      spring-boot-docs/src/main/asciidoc/build-tool-plugins.adoc
  2. 2
      spring-boot-docs/src/main/asciidoc/deployment.adoc
  3. 20
      spring-boot-docs/src/main/asciidoc/getting-started.adoc
  4. 29
      spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc

29
spring-boot-docs/src/main/asciidoc/build-tool-plugins.adoc

@ -172,32 +172,33 @@ dependency management provided by `spring-boot-dependencies`. @@ -172,32 +172,33 @@ dependency management provided by `spring-boot-dependencies`.
[[build-tool-plugins-including-the-gradle-plugin]]
=== Including the plugin
To use the Spring Boot Gradle Plugin simply include a `buildscript` dependency and apply
the `spring-boot` plugin:
ifeval::["{spring-boot-repo}" == "release"]
To use the Spring Boot Gradle Plugin configure it using the `plugins` block:
[source,groovy,indent=0,subs="verbatim,attributes"]
----
buildscript {
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:{spring-boot-version}")
}
plugins {
id 'org.springframework.boot' version '{spring-boot-version}'
}
apply plugin: 'org.springframework.boot'
----
If you are using a milestone or snapshot release you will also need to add appropriate
`repositories` reference:
endif::[]
ifeval::["{spring-boot-repo}" != "release"]
To use the Spring Boot Gradle Plugin simply include a `buildscript` dependency and apply
the `spring-boot` plugin:
[source,groovy,indent=0,subs="verbatim,attributes"]
----
buildscript {
repositories {
maven.url "http://repo.spring.io/snapshot"
maven.url "http://repo.spring.io/milestone"
maven { url 'http://repo.spring.io/snapshot' }
maven { url 'http://repo.spring.io/milestone' }
}
dependencies {
classpath 'org.springframework.boot:spring-boot-gradle-plugin:{spring-boot-version}''
}
// ...
}
apply plugin: 'org.springframework.boot'
----
endif::[]

2
spring-boot-docs/src/main/asciidoc/deployment.adoc

@ -387,8 +387,6 @@ With Gradle, the equivalent configuration would be: @@ -387,8 +387,6 @@ With Gradle, the equivalent configuration would be:
[source,groovy,indent=0,subs="verbatim,quotes,attributes"]
----
apply plugin: 'org.springframework.boot'
springBoot {
executable = true
}

20
spring-boot-docs/src/main/asciidoc/getting-started.adoc

@ -226,22 +226,28 @@ Here is a typical `build.gradle` file: @@ -226,22 +226,28 @@ Here is a typical `build.gradle` file:
[source,groovy,indent=0,subs="verbatim,attributes"]
----
ifeval::["{spring-boot-repo}" == "release"]
plugins {
id 'org.springframework.boot' version '{spring-boot-version}'
id 'java'
}
endif::[]
ifeval::["{spring-boot-repo}" != "release"]
buildscript {
repositories {
jcenter()
ifndef::release[]
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
endif::release[]
maven { url 'http://repo.spring.io/snapshot' }
maven { url 'http://repo.spring.io/milestone' }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:{spring-boot-version}")
classpath 'org.springframework.boot:spring-boot-gradle-plugin:{spring-boot-version}'
}
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
endif::[]
jar {
baseName = 'myproject'
version = '0.0.1-SNAPSHOT'
@ -249,10 +255,10 @@ endif::release[] @@ -249,10 +255,10 @@ endif::release[]
repositories {
jcenter()
ifndef::release[]
ifeval::["{spring-boot-repo}" != "release"]
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
endif::release[]
endif::[]
}
dependencies {

29
spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc

@ -214,8 +214,6 @@ Maven, there is no "`super parent`" to import to share some configuration. @@ -214,8 +214,6 @@ Maven, there is no "`super parent`" to import to share some configuration.
[source,groovy,indent=0,subs="attributes"]
----
apply plugin: 'java'
repositories {
ifeval::["{spring-boot-repo}" != "release"]
maven { url "http://repo.spring.io/snapshot" }
@ -240,32 +238,33 @@ managed by Spring Boot: @@ -240,32 +238,33 @@ managed by Spring Boot:
[source,groovy,indent=0,subs="attributes"]
----
ifeval::["{spring-boot-repo}" == "release"]
plugins {
id 'org.springframework.boot' version '{spring-boot-version}'
id 'java'
}
endif::[]
ifeval::["{spring-boot-repo}" != "release"]
buildscript {
repositories {
ifeval::["{spring-boot-repo}" != "release"]
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
endif::[]
ifeval::["{spring-boot-repo}" == "release"]
jcenter()
endif::[]
maven { url 'http://repo.spring.io/snapshot' }
maven { url 'http://repo.spring.io/milestone' }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:{spring-boot-version}")
classpath 'org.springframework.boot:spring-boot-gradle-plugin:{spring-boot-version}'
}
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
endif::[]
repositories {
ifeval::["{spring-boot-repo}" != "release"]
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
endif::[]
ifeval::["{spring-boot-repo}" == "release"]
jcenter()
ifeval::["{spring-boot-repo}" != "release"]
maven { url 'http://repo.spring.io/snapshot' }
maven { url 'http://repo.spring.io/milestone' }
endif::[]
}

Loading…
Cancel
Save