Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions buildSrc/src/main/java/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ object Config {

val graphQlJava = "com.graphql-java:graphql-java:17.3"
val graphQlJava22 = "com.graphql-java:graphql-java:22.1"
val graphQlJavaNew = "com.graphql-java:graphql-java:24.0"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we go with major versions for the name like before? I.e. graphQlJava24?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought about it but think it's better to skip the version in the name since we probably want to keep this aligned with Spring Boots required version in the future.

Or it would be even better to have Spring Boot take care of handling the version via its gradle plugin.


val quartz = "org.quartz-scheduler:quartz:2.3.0"

Expand Down
2 changes: 1 addition & 1 deletion sentry-spring-jakarta/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ dependencies {
testImplementation(Config.Libs.springBoot3StarterAop)
testImplementation(Config.Libs.springBoot3StarterGraphql)
testImplementation(Config.Libs.contextPropagation)
testImplementation(Config.Libs.graphQlJava22)
testImplementation(Config.Libs.graphQlJavaNew)
testImplementation(projects.sentryReactor)
}

Expand Down
Loading