Skip to content

Commit 381706f

Browse files
committed
Merge branch '3.5.x'
Closes gh-46255
2 parents d49b37a + 3f4c870 commit 381706f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pluginManagement {
1919
repositories {
2020
mavenCentral()
2121
gradlePluginPortal()
22-
spring.mavenRepositories();
22+
spring.mavenRepositories()
2323
}
2424
resolutionStrategy {
2525
eachPlugin {

spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/dockerTest/resources/org/springframework/boot/gradle/tasks/bundling/BootBuildImageIntegrationTests-buildsImageWithPullPolicy.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import org.springframework.boot.buildpack.platform.build.PullPolicy;
17+
import org.springframework.boot.buildpack.platform.build.PullPolicy
1818

1919
plugins {
2020
id 'java'

spring-boot-tests/spring-boot-integration-tests/spring-boot-server-tests/spring-boot-server-tests-app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ dependencies {
8080
undertow("org.springframework.boot:spring-boot-starter-undertow")
8181
}
8282

83-
def boolean isWindows() {
84-
return File.separatorChar == '\\';
83+
static boolean isWindows() {
84+
return File.separatorChar == '\\'
8585
}
8686

8787
["jetty", "tomcat", "undertow"].each { webServer ->

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-ant/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ tasks.register("syncAntSources", Sync) {
7474
tasks.register("antRun", JavaExec) {
7575
workingDir = layout.buildDirectory.dir("ant")
7676
dependsOn syncTestRepository, syncAntSources, configurations.antDependencies
77-
classpath = configurations.antDependencies;
77+
classpath = configurations.antDependencies
7878
mainClass = "org.apache.tools.ant.launch.Launcher"
7979
args = [ "clean", "build" ]
8080
systemProperties = [

0 commit comments

Comments
 (0)