Skip to content

Commit

Permalink
Depend solely on the jwt dependency
Browse files Browse the repository at this point in the history
Remove userId from baggage due to PII (getsentry#2157)

Rnemae jose dependency config name
  • Loading branch information
felixklauke committed Jul 12, 2022
1 parent 3f34cd4 commit ac8d5d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion buildSrc/src/main/java/Config.kt
Expand Up @@ -5,6 +5,7 @@ object Config {
val kotlinStdLib = "stdlib-jdk8"

val springBootVersion = "2.6.8"
val springSecurityVersion = "5.6.5"
val kotlinCompatibleLanguageVersion = "1.4"

val composeVersion = "1.1.1"
Expand Down Expand Up @@ -73,7 +74,7 @@ object Config {
val springBootStarterAop = "org.springframework.boot:spring-boot-starter-aop:$springBootVersion"
val springBootStarterSecurity = "org.springframework.boot:spring-boot-starter-security:$springBootVersion"
val springBootStarterJdbc = "org.springframework.boot:spring-boot-starter-jdbc:$springBootVersion"
val springBootStartOauth2ResourceServer = "org.springframework.boot:spring-boot-starter-oauth2-resource-server:$springBootVersion"
val springSecurityOauth2Jose = "org.springframework.security:spring-security-oauth2-jose:$springSecurityVersion"

val springWeb = "org.springframework:spring-webmvc"
val springWebflux = "org.springframework:spring-webflux"
Expand Down
2 changes: 1 addition & 1 deletion sentry-spring-boot-starter/build.gradle.kts
Expand Up @@ -42,7 +42,7 @@ dependencies {
compileOnly(Config.Libs.servletApi)
compileOnly(Config.Libs.springBootStarterAop)
compileOnly(Config.Libs.springBootStarterSecurity)
compileOnly(Config.Libs.springBootStartOauth2ResourceServer)
compileOnly(Config.Libs.springSecurityOauth2Jose)
compileOnly(Config.Libs.reactorCore)

annotationProcessor(Config.AnnotationProcessors.springBootAutoConfigure)
Expand Down

0 comments on commit ac8d5d3

Please sign in to comment.