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
f4508b40
Commit
f4508b40
authored
Jul 24, 2020
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.1.x' into 2.2.x
Closes gh-22547
parents
652712b5
7d825ceb
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
85 additions
and
4 deletions
+85
-4
.gitignore
.gitignore
+1
-0
extensions.xml
.mvn/extensions.xml
+12
-0
gradle-enterprise.xml
.mvn/gradle-enterprise.xml
+25
-0
stage.sh
ci/scripts/stage.sh
+4
-4
pom.xml
pom.xml
+33
-0
empty-file-for-mvn
...boot-project/spring-boot-starters/.mvn/empty-file-for-mvn
+1
-0
pom.xml
...boot-project/spring-boot-tools/spring-boot-loader/pom.xml
+3
-0
pom.xml
...roject/spring-boot-tools/spring-boot-maven-plugin/pom.xml
+3
-0
pom.xml
spring-boot-tests/spring-boot-smoke-tests-invoker/pom.xml
+3
-0
No files found.
.gitignore
View file @
f4508b40
...
...
@@ -38,3 +38,4 @@ transaction-logs
secrets.yml
.gradletasknamecache
.sts4-cache
.mvn/.gradle-enterprise/gradle-enterprise-workspace-id
\ No newline at end of file
.mvn/extensions.xml
0 → 100644
View file @
f4508b40
<extensions>
<extension>
<groupId>
com.gradle
</groupId>
<artifactId>
gradle-enterprise-maven-extension
</artifactId>
<version>
1.5.3
</version>
</extension>
<extension>
<groupId>
io.spring.ge.conventions
</groupId>
<artifactId>
gradle-enterprise-conventions-maven-extension
</artifactId>
<version>
0.0.5
</version>
</extension>
</extensions>
\ No newline at end of file
.mvn/gradle-enterprise.xml
0 → 100644
View file @
f4508b40
<gradleEnterprise
xmlns=
"https://www.gradle.com/gradle-enterprise-maven"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"https://www.gradle.com/gradle-enterprise-maven https://www.gradle.com/schema/gradle-enterprise-maven.xsd"
>
<server>
<url>
https://ge.spring.io
</url>
</server>
<buildScan>
<publishIfAuthenticated>
true
</publishIfAuthenticated>
</buildScan>
<buildCache>
<local>
<enabled>
true
</enabled>
</local>
<remote>
<enabled>
true
</enabled>
<storeEnabled>
<![CDATA[#{env['GRADLE_ENTERPRISE_CACHE_USERNAME'] != null && env['GRADLE_ENTERPRISE_CACHE_USERNAME'] != null}]]>
</storeEnabled>
<server>
<credentials>
<username>
${env.GRADLE_ENTERPRISE_CACHE_USERNAME}
</username>
<password>
${env.GRADLE_ENTERPRISE_CACHE_PASSWORD}
</password>
</credentials>
</server>
</remote>
</buildCache>
</gradleEnterprise>
ci/scripts/stage.sh
View file @
f4508b40
...
...
@@ -35,10 +35,10 @@ git add pom.xml > /dev/null
git commit
-m
"Release v
$stageVersion
"
>
/dev/null
git tag
-a
"v
$stageVersion
"
-m
"Release v
$stageVersion
"
>
/dev/null
run_maven
-f
spring-boot-project/pom.xml clean deploy
-U
-Dfull
-DaltDeploymentRepository
=
distribution::default::file://
${
repository
}
run_maven
-f
spring-boot-tests/spring-boot-smoke-tests/pom.xml clean
install
-U
-Dfull
-Drepository
=
file://
${
repository
}
run_maven
-f
spring-boot-tests/spring-boot-integration-tests/pom.xml clean
install
-U
-Dfull
-Drepository
=
file://
${
repository
}
run_maven
-f
spring-boot-tests/spring-boot-deployment-tests/pom.xml clean
install
-U
-Dfull
-Drepository
=
file://
${
repository
}
run_maven
-f
spring-boot-project/pom.xml clean deploy
-U
-Dfull
-DaltDeploymentRepository
=
distribution::default::file://
${
repository
}
-Dgradle
.cache.local.enabled
=
false
-Dgradle
.cache.remote.enabled
=
false
run_maven
-f
spring-boot-tests/spring-boot-smoke-tests/pom.xml clean
install
-U
-Dfull
-Drepository
=
file://
${
repository
}
-Dgradle
.cache.local.enabled
=
false
-Dgradle
.cache.remote.enabled
=
false
run_maven
-f
spring-boot-tests/spring-boot-integration-tests/pom.xml clean
install
-U
-Dfull
-Drepository
=
file://
${
repository
}
-Dgradle
.cache.local.enabled
=
false
-Dgradle
.cache.remote.enabled
=
false
run_maven
-f
spring-boot-tests/spring-boot-deployment-tests/pom.xml clean
install
-U
-Dfull
-Drepository
=
file://
${
repository
}
-Dgradle
.cache.local.enabled
=
false
-Dgradle
.cache.remote.enabled
=
false
git reset
--hard
HEAD^
>
/dev/null
if
[[
$nextVersion
!=
$snapshotVersion
]]
;
then
...
...
pom.xml
View file @
f4508b40
...
...
@@ -380,5 +380,38 @@
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>
com.gradle
</groupId>
<artifactId>
gradle-enterprise-maven-extension
</artifactId>
<version>
1.5.2
</version>
<configuration>
<gradleEnterprise>
<plugins>
<plugin>
<artifactId>
maven-checkstyle-plugin
</artifactId>
<inputs>
<fileSets>
<fileSet>
<name>
allowlist
</name>
<paths>
<path>
${main.basedir}/src/checkstyle
</path>
</paths>
<normalization>
RELATIVE_PATH
</normalization>
</fileSet>
</fileSets>
<properties>
<property>
<name>
propertyExpansion
</name>
<value>
ignoredValue
</value>
</property>
</properties>
</inputs>
</plugin>
</plugins>
</gradleEnterprise>
</configuration>
</plugin>
</plugins>
</build>
</project>
spring-boot-project/spring-boot-starters/.mvn/empty-file-for-mvn
0 → 100644
View file @
f4508b40
This file is empty so that the starters project does not generate multiple build scans.
\ No newline at end of file
spring-boot-project/spring-boot-tools/spring-boot-loader/pom.xml
View file @
f4508b40
...
...
@@ -88,6 +88,9 @@
<addTestClassPath>
true
</addTestClassPath>
<skipInvocation>
${skipTests}
</skipInvocation>
<streamLogs>
true
</streamLogs>
<properties>
<scan>
false
</scan>
</properties>
</configuration>
</execution>
</executions>
...
...
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/pom.xml
View file @
f4508b40
...
...
@@ -165,6 +165,9 @@
<addTestClassPath>
true
</addTestClassPath>
<skipInvocation>
${skipTests}
</skipInvocation>
<streamLogs>
true
</streamLogs>
<properties>
<scan>
false
</scan>
</properties>
</configuration>
</execution>
</executions>
...
...
spring-boot-tests/spring-boot-smoke-tests-invoker/pom.xml
View file @
f4508b40
...
...
@@ -29,6 +29,9 @@
<pomIncludes>
<pomInclude>
pom.xml
</pomInclude>
</pomIncludes>
<properties>
<scan>
false
</scan>
</properties>
</configuration>
<executions>
<execution>
...
...
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