Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
991bcf5c
Commit
991bcf5c
authored
Jan 17, 2020
by
dreis2211
Committed by
Stephane Nicoll
Jan 21, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revisit documentation that mentions Gradle "compile" configuration
See gh-19797
parent
d421c637
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
16 deletions
+12
-16
README.adoc
spring-boot-project/spring-boot-actuator/README.adoc
+1
-1
howto.adoc
...oot-project/spring-boot-docs/src/docs/asciidoc/howto.adoc
+10
-14
production-ready-features.adoc
...oot-docs/src/docs/asciidoc/production-ready-features.adoc
+1
-1
No files found.
spring-boot-project/spring-boot-actuator/README.adoc
View file @
991bcf5c
...
@@ -27,7 +27,7 @@ For Gradle, use the following declaration:
...
@@ -27,7 +27,7 @@ For Gradle, use the following declaration:
[indent=0]
[indent=0]
----
----
dependencies {
dependencies {
compile("org.springframework.boot:spring-boot-starter-actuator")
implementation 'org.springframework.boot:spring-boot-starter-actuator'
}
}
----
----
...
...
spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto.adoc
View file @
991bcf5c
...
@@ -448,15 +448,12 @@ The following Gradle example shows how to exclude Netty and include Undertow for
...
@@ -448,15 +448,12 @@ The following Gradle example shows how to exclude Netty and include Undertow for
[source,groovy,indent=0,subs="verbatim,quotes,attributes"]
[source,groovy,indent=0,subs="verbatim,quotes,attributes"]
----
----
configurations {
// exclude Reactor Netty
compile.exclude module: 'spring-boot-starter-reactor-netty'
}
dependencies {
dependencies {
compile 'org.springframework.boot:spring-boot-starter-webflux'
implementation('org.springframework.boot:spring-boot-starter-webflux') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-reactor-netty'
}
// Use Undertow instead
// Use Undertow instead
compile
'org.springframework.boot:spring-boot-starter-undertow'
implementation
'org.springframework.boot:spring-boot-starter-undertow'
// ...
// ...
}
}
----
----
...
@@ -1435,8 +1432,8 @@ And the following example shows one way to set up the starters in Gradle:
...
@@ -1435,8 +1432,8 @@ And the following example shows one way to set up the starters in Gradle:
[source,groovy,indent=0,subs="verbatim,quotes,attributes"]
[source,groovy,indent=0,subs="verbatim,quotes,attributes"]
----
----
dependencies {
dependencies {
compile
'org.springframework.boot:spring-boot-starter-web'
implementation
'org.springframework.boot:spring-boot-starter-web'
compile
'org.springframework.boot:spring-boot-starter-log4j2'
implementation
'org.springframework.boot:spring-boot-starter-log4j2'
}
}
configurations {
configurations {
...
@@ -2898,12 +2895,11 @@ The following example shows how to do so in Gradle:
...
@@ -2898,12 +2895,11 @@ The following example shows how to do so in Gradle:
[source,groovy,indent=0,subs="verbatim,quotes,attributes"]
[source,groovy,indent=0,subs="verbatim,quotes,attributes"]
----
----
configurations {
compile.exclude module: "lettuce"
}
dependencies {
dependencies {
compile("redis.clients:jedis")
implementation('org.springframework.boot:spring-boot-starter-data-redis') {
exclude group: 'io.lettuce', module: 'lettuce-core'
}
implementation 'redis.clients:jedis'
// ...
// ...
}
}
----
----
spring-boot-project/spring-boot-docs/src/docs/asciidoc/production-ready-features.adoc
View file @
991bcf5c
...
@@ -36,7 +36,7 @@ For Gradle, use the following declaration:
...
@@ -36,7 +36,7 @@ For Gradle, use the following declaration:
[source,groovy,indent=0]
[source,groovy,indent=0]
----
----
dependencies {
dependencies {
compile("org.springframework.boot:spring-boot-starter-actuator")
implementation 'org.springframework.boot:spring-boot-starter-actuator'
}
}
----
----
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment