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
96bd9daa
Commit
96bd9daa
authored
May 14, 2020
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compile doc's Java examples and allow them to be imported into Eclipse
Closes gh-21445
parent
a2187bbd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
build.gradle
spring-boot-project/spring-boot-docs/build.gradle
+36
-0
No files found.
spring-boot-project/spring-boot-docs/build.gradle
View file @
96bd9daa
...
@@ -25,6 +25,16 @@ repositories {
...
@@ -25,6 +25,16 @@ repositories {
}
}
}
}
sourceSets
{
main
}
plugins
.
withType
(
EclipsePlugin
)
{
extensions
.
getByType
(
org
.
gradle
.
plugins
.
ide
.
eclipse
.
model
.
EclipseModel
).
classpath
{
classpath
->
classpath
.
plusConfigurations
.
add
(
configurations
.
getByName
(
sourceSets
.
main
.
runtimeClasspathConfigurationName
))
}
}
dependencies
{
dependencies
{
actuatorApiDocumentation
(
project
(
path:
":spring-boot-project:spring-boot-actuator-autoconfigure"
,
configuration:
"documentation"
))
actuatorApiDocumentation
(
project
(
path:
":spring-boot-project:spring-boot-actuator-autoconfigure"
,
configuration:
"documentation"
))
...
@@ -46,6 +56,32 @@ dependencies {
...
@@ -46,6 +56,32 @@ dependencies {
gradlePluginDocumentation
(
project
(
path:
":spring-boot-project:spring-boot-tools:spring-boot-gradle-plugin"
,
configuration:
"documentation"
))
gradlePluginDocumentation
(
project
(
path:
":spring-boot-project:spring-boot-tools:spring-boot-gradle-plugin"
,
configuration:
"documentation"
))
implementation
(
project
(
path:
":spring-boot-project:spring-boot-actuator"
))
implementation
(
project
(
path:
":spring-boot-project:spring-boot-autoconfigure"
))
implementation
(
project
(
path:
":spring-boot-project:spring-boot-test"
))
implementation
(
project
(
path:
":spring-boot-project:spring-boot-test-autoconfigure"
))
implementation
(
"com.zaxxer:HikariCP"
)
implementation
(
"io.micrometer:micrometer-core"
)
implementation
(
"io.projectreactor.netty:reactor-netty"
)
implementation
(
"jakarta.servlet:jakarta.servlet-api"
)
implementation
(
"org.apache.commons:commons-dbcp2"
)
implementation
(
"org.apache.kafka:kafka-streams"
)
implementation
(
"org.apache.tomcat.embed:tomcat-embed-core"
)
implementation
(
"org.assertj:assertj-core"
)
implementation
(
"org.glassfish.jersey.core:jersey-server"
)
implementation
(
"org.hibernate:hibernate-jcache"
)
implementation
(
"org.springframework:spring-test"
)
implementation
(
"org.springframework:spring-web"
)
implementation
(
"org.springframework:spring-webflux"
)
implementation
(
"org.springframework.data:spring-data-redis"
)
implementation
(
"org.springframework.data:spring-data-r2dbc"
)
implementation
(
"org.springframework.kafka:spring-kafka"
)
implementation
(
"org.springframework.restdocs:spring-restdocs-restassured"
)
implementation
(
"org.springframework.restdocs:spring-restdocs-webtestclient"
)
implementation
(
"org.springframework.security:spring-security-config"
)
implementation
(
"org.springframework.security:spring-security-web"
)
implementation
(
"org.junit.jupiter:junit-jupiter"
)
mavenPluginDocumentation
(
project
(
path:
":spring-boot-project:spring-boot-tools:spring-boot-maven-plugin"
,
configuration:
"documentation"
))
mavenPluginDocumentation
(
project
(
path:
":spring-boot-project:spring-boot-tools:spring-boot-maven-plugin"
,
configuration:
"documentation"
))
testSlices
(
project
(
path:
":spring-boot-project:spring-boot-test-autoconfigure"
,
configuration:
"testSliceMetadata"
))
testSlices
(
project
(
path:
":spring-boot-project:spring-boot-test-autoconfigure"
,
configuration:
"testSliceMetadata"
))
...
...
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