File tree Expand file tree Collapse file tree 6 files changed +18
-1
lines changed
sentry-samples-spring-boot-jakarta-opentelemetry-noagent
sentry-samples-spring-boot-jakarta-opentelemetry
sentry-samples-spring-boot-jakarta
sentry-samples-spring-boot-webflux-jakarta
sentry-samples-spring-jakarta Expand file tree Collapse file tree 6 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ java.targetCompatibility = JavaVersion.VERSION_17
1818
1919repositories { mavenCentral() }
2020
21+ // Apollo 4.x requires coroutines 1.9.0+, override Spring Boot's managed version
22+ extra[" kotlin-coroutines.version" ] = " 1.9.0"
23+
2124configure<JavaPluginExtension > {
2225 sourceCompatibility = JavaVersion .VERSION_17
2326 targetCompatibility = JavaVersion .VERSION_17
Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ java.targetCompatibility = JavaVersion.VERSION_17
1919
2020repositories { mavenCentral() }
2121
22+ // Apollo 4.x requires coroutines 1.9.0+, override Spring Boot's managed version
23+ extra[" kotlin-coroutines.version" ] = " 1.9.0"
24+
2225configure<JavaPluginExtension > {
2326 sourceCompatibility = JavaVersion .VERSION_17
2427 targetCompatibility = JavaVersion .VERSION_17
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ java.targetCompatibility = JavaVersion.VERSION_17
1818
1919repositories { mavenCentral() }
2020
21+ // Apollo 4.x requires coroutines 1.9.0+, override Spring Boot's managed version
22+ extra[" kotlin-coroutines.version" ] = " 1.9.0"
23+
2124configure<JavaPluginExtension > {
2225 sourceCompatibility = JavaVersion .VERSION_17
2326 targetCompatibility = JavaVersion .VERSION_17
@@ -69,7 +72,6 @@ dependencies {
6972 testImplementation(kotlin(Config .kotlinStdLib))
7073 testImplementation(projects.sentry)
7174 testImplementation(projects.sentrySystemTestSupport)
72- testImplementation(libs.apollo3.kotlin)
7375 testImplementation(libs.kotlin.test.junit)
7476 testImplementation(libs.slf4j2.api)
7577 testImplementation(libs.springboot3.starter.test) {
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ java.targetCompatibility = JavaVersion.VERSION_17
1818
1919repositories { mavenCentral() }
2020
21+ // Apollo 4.x requires coroutines 1.9.0+, override Spring Boot's managed version
22+ extra[" kotlin-coroutines.version" ] = " 1.9.0"
23+
2124dependencies {
2225 implementation(Config .Libs .kotlinReflect)
2326 implementation(kotlin(Config .kotlinStdLib, KotlinCompilerVersion .VERSION ))
Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ java.targetCompatibility = JavaVersion.VERSION_17
2626
2727repositories { mavenCentral() }
2828
29+ // Apollo 4.x requires coroutines 1.9.0+, override Spring Boot's managed version
30+ extra[" kotlin-coroutines.version" ] = " 1.9.0"
31+
2932dependencyManagement {
3033 imports {
3134 mavenBom(SpringBootPlugin .BOM_COORDINATES )
Original file line number Diff line number Diff line change 2525
2626repositories { mavenCentral() }
2727
28+ // Apollo 4.x requires coroutines 1.9.0+, override Spring Boot's managed version
29+ extra[" kotlin-coroutines.version" ] = " 1.9.0"
30+
2831dependencyManagement {
2932 imports {
3033 mavenBom(libs.springboot2.bom.get().toString())
You can’t perform that action at this time.
0 commit comments