Skip to content

Commit aff045a

Browse files
Merge branch '3.0.x' into 3.1.x
Closes gh-2547
2 parents e5716f1 + 1033388 commit aff045a

File tree

10 files changed

+9
-824
lines changed

10 files changed

+9
-824
lines changed

build.gradle

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ buildscript {
2525
}
2626

2727
apply plugin: 'io.spring.convention.root'
28-
apply plugin: 'org.springframework.security.update-dependencies'
2928

3029
group = 'org.springframework.session'
3130
description = 'Spring Session'
@@ -47,27 +46,3 @@ nohttp {
4746
source.exclude "spring-session-docs/.gradle/nodejs/**"
4847
source.exclude "spring-session-docs/modules/ROOT/examples/**/build/**"
4948
}
50-
51-
tasks.named("updateDependencies") {
52-
// we aren't Gradle 8 compatible yet
53-
checkForGradleUpdate = false
54-
}
55-
56-
updateDependenciesSettings {
57-
gitHub {
58-
organization = "spring-projects"
59-
repository = "spring-session"
60-
}
61-
dependencyExcludes {
62-
majorVersionBump()
63-
minorVersionBump()
64-
alphaBetaVersions()
65-
snapshotVersions()
66-
}
67-
setFiles({
68-
return [
69-
project.file("gradle/dependency-management.gradle"),
70-
project.file("buildSrc/src/main/groovy/io/spring/gradle/convention/CheckstylePlugin.groovy")
71-
]
72-
})
73-
}

buildSrc/build.gradle

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ plugins {
22
id "java-gradle-plugin"
33
id "java"
44
id "groovy"
5-
id 'com.apollographql.apollo' version '2.4.5'
65
}
76

87
sourceCompatibility = JavaVersion.VERSION_11
@@ -47,10 +46,6 @@ gradlePlugin {
4746
id = "org.springframework.propdeps"
4847
implementationClass = "org.springframework.gradle.propdeps.PropDepsPlugin"
4948
}
50-
updateDependencies {
51-
id = "org.springframework.security.update-dependencies"
52-
implementationClass = "org.springframework.security.convention.versions.UpdateDependenciesPlugin"
53-
}
5449
}
5550
}
5651

@@ -78,6 +73,7 @@ dependencies {
7873
implementation 'org.hidetake:gradle-ssh-plugin:2.10.1'
7974
implementation 'org.jfrog.buildinfo:build-info-extractor-gradle:4.29.0'
8075
implementation 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.7.1'
76+
implementation libs.com.squareup.okhttp3.okhttp
8177

8278
testImplementation platform('org.junit:junit-bom:5.8.1')
8379
testImplementation "org.junit.jupiter:junit-jupiter-api"

buildSrc/settings.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
dependencyResolutionManagement {
2+
versionCatalogs {
3+
libs {
4+
from(files("../gradle/libs.versions.toml"))
5+
}
6+
}
7+
}

buildSrc/src/main/java/org/springframework/security/convention/versions/CommandLineUtils.java

Lines changed: 0 additions & 49 deletions
This file was deleted.

buildSrc/src/main/java/org/springframework/security/convention/versions/FileUtils.java

Lines changed: 0 additions & 49 deletions
This file was deleted.

buildSrc/src/main/java/org/springframework/security/convention/versions/GitHubApi.java

Lines changed: 0 additions & 180 deletions
This file was deleted.

0 commit comments

Comments
 (0)