File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed
sentry-samples/sentry-samples-spring
sentry-system-test-support Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ group = "io.sentry.sample.spring"
2121version = " 0.0.1-SNAPSHOT"
2222
2323java {
24- sourceCompatibility = JavaVersion .VERSION_17
25- targetCompatibility = JavaVersion .VERSION_17
24+ sourceCompatibility = JavaVersion .VERSION_1_8
25+ targetCompatibility = JavaVersion .VERSION_1_8
2626}
2727
2828repositories { mavenCentral() }
@@ -62,7 +62,7 @@ dependencies {
6262tasks.withType<KotlinCompile >().configureEach {
6363 kotlin {
6464 compilerOptions.freeCompilerArgs = listOf (" -Xjsr305=strict" )
65- compilerOptions.jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget .JVM_17
65+ compilerOptions.jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget .JVM_1_8
6666 }
6767}
6868
Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ plugins {
1010
1111configure<JavaPluginExtension > {
1212 sourceCompatibility = JavaVersion .VERSION_17
13- targetCompatibility = JavaVersion .VERSION_17
13+ targetCompatibility = JavaVersion .VERSION_1_8
1414}
1515
1616tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > ().configureEach {
17- compilerOptions.jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget .JVM_17
17+ compilerOptions.jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget .JVM_1_8
1818 compilerOptions.languageVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion .KOTLIN_1_9
1919 compilerOptions.apiVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion .KOTLIN_1_9
2020}
@@ -26,10 +26,8 @@ dependencies {
2626
2727 compileOnly(libs.jetbrains.annotations)
2828 compileOnly(libs.nopen.annotations)
29- compileOnly(libs.springboot3.starter.test) {
30- exclude(group = " org.junit.vintage" , module = " junit-vintage-engine" )
31- }
32- compileOnly(libs.springboot3.starter.web)
29+
30+ compileOnly(libs.springboot.starter.web)
3331
3432 implementation(libs.jackson.databind)
3533 implementation(libs.jackson.kotlin)
You can’t perform that action at this time.
0 commit comments