Skip to content

Commit

Permalink
Update to Spring Security 6.3.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrandja committed Apr 12, 2024
1 parent b9b0bb7 commit 64558fc
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 7 deletions.
3 changes: 2 additions & 1 deletion docs/spring-authorization-server-docs.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,14 @@ docsZip {
repositories {
mavenCentral()
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/snapshot" }
}

dependencies {
implementation(platform("org.springframework.boot:spring-boot-dependencies:3.2.2")) {
exclude group: "org.springframework.security", module: "spring-security-oauth2-authorization-server"
}
implementation platform("org.springframework.security:spring-security-bom:6.3.0-M3")
implementation platform("org.springframework.security:spring-security-bom:6.3.0-SNAPSHOT")
implementation "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
implementation "org.springframework.boot:spring-boot-starter-security"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx3g -XX:+HeapDumpOnOutOfMemoryError
org.gradle.parallel=true
org.gradle.caching=true
springFrameworkVersion=6.1.5
springSecurityVersion=6.3.0-M3
springSecurityVersion=6.3.0-SNAPSHOT
springJavaformatVersion=0.0.38
springJavaformatExcludePackages=org/springframework/security/config org/springframework/security/oauth2
checkstyleToolVersion=8.34
Expand Down
2 changes: 1 addition & 1 deletion samples/default-authorizationserver/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
spring-security.version=6.3.0-M3
spring-security.version=6.3.0-SNAPSHOT
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ java {
repositories {
mavenCentral()
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/snapshot" }
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion samples/demo-authorizationserver/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
spring-security.version=6.3.0-M3
spring-security.version=6.3.0-SNAPSHOT
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ java {
repositories {
mavenCentral()
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/snapshot" }
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion samples/demo-client/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
spring-security.version=6.3.0-M3
spring-security.version=6.3.0-SNAPSHOT
1 change: 1 addition & 0 deletions samples/demo-client/samples-demo-client.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ java {
repositories {
mavenCentral()
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/snapshot" }
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion samples/messages-resource/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
spring-security.version=6.3.0-M3
spring-security.version=6.3.0-SNAPSHOT
1 change: 1 addition & 0 deletions samples/messages-resource/samples-messages-resource.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ java {
repositories {
mavenCentral()
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/snapshot" }
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion samples/users-resource/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
spring-security.version=6.3.0-M3
spring-security.version=6.3.0-SNAPSHOT
1 change: 1 addition & 0 deletions samples/users-resource/samples-users-resource.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ sourceCompatibility = "17"
repositories {
mavenCentral()
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/snapshot" }
}

dependencies {
Expand Down

0 comments on commit 64558fc

Please sign in to comment.