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
77badf77
Commit
77badf77
authored
Jan 10, 2020
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #19619 from vpavic
* gh-19619: Simplify Gradle's build settings Closes gh-19619
parents
e8c4a859
57b7dfc7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
settings.gradle
buildSrc/settings.gradle
+1
-1
settings.gradle
settings.gradle
+3
-3
No files found.
buildSrc/settings.gradle
View file @
77badf77
...
...
@@ -13,4 +13,4 @@ pluginManagement {
}
}
apply
from:
new
File
(
settingsDir
,
'../gradle/build-cache-settings.gradle'
)
apply
from:
"$settingsDir/../gradle/build-cache-settings.gradle"
settings.gradle
View file @
77badf77
...
...
@@ -32,7 +32,7 @@ gradleEnterprise {
}
}
apply
from:
new
File
(
settingsDir
,
'gradle/build-cache-settings.gradle'
)
apply
from:
"$settingsDir/gradle/build-cache-settings.gradle"
rootProject
.
name
=
'spring-boot-build'
...
...
@@ -62,10 +62,10 @@ include 'spring-boot-tests:spring-boot-integration-tests:spring-boot-configurati
include
'spring-boot-tests:spring-boot-integration-tests:spring-boot-launch-script-tests'
include
'spring-boot-tests:spring-boot-integration-tests:spring-boot-server-tests'
new
File
(
"$rootDir/spring-boot-project/spring-boot-starters"
).
eachFileMatch
(
groovy
.
io
.
FileType
.
DIRECTORIES
,
~
/spring-boot-starter.*/
)
{
file
(
"$rootDir/spring-boot-project/spring-boot-starters"
).
eachDirMatch
(
~
/spring-boot-starter.*/
)
{
include
"spring-boot-project:spring-boot-starters:$it.name"
}
new
File
(
"$rootDir/spring-boot-tests/spring-boot-smoke-tests"
).
eachFileMatch
(
groovy
.
io
.
FileType
.
DIRECTORIES
,
~
/spring-boot-smoke-test.*/
)
{
file
(
"$rootDir/spring-boot-tests/spring-boot-smoke-tests"
).
eachDirMatch
(
~
/spring-boot-smoke-test.*/
)
{
include
"spring-boot-tests:spring-boot-smoke-tests:$it.name"
}
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