Skip to content
Closed
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
10 changes: 8 additions & 2 deletions agent/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@ dependencies {
// Compile only for interface types :
compileOnly 'jakarta.servlet:jakarta.servlet-api:6.1.0' // spring 3 -> jakarta
compileOnly 'javax.servlet:javax.servlet-api:4.0.1' // spring 2 -> javax
compileOnly 'io.projectreactor.netty:reactor-netty-http:1.2.1' // For Spring Webflux
compileOnly 'io.projectreactor.netty:reactor-netty-http:1.3.7' // For Spring Webflux
compileOnly 'io.javalin:javalin:6.4.0'
compileOnly 'org.springframework:spring-web:5.3.20'
compileOnly 'org.springframework:spring-web:7.0.9'

constraints {
compileOnly('org.jetbrains.kotlin:kotlin-stdlib:2.1.0') { because 'CVE fix: AIKIDO-2026-550292' }
compileOnly('org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.0') { because 'CVE fix: AIKIDO-2026-550292' }
compileOnly('org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0') { because 'CVE fix: AIKIDO-2026-550292' }
}

testImplementation 'org.junit.jupiter:junit-jupiter:5.9.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.2'
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ subprojects {
options.encoding = 'UTF-8'
}
java {
sourceCompatibility = JavaVersion.VERSION_16
targetCompatibility = JavaVersion.VERSION_16
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
}
Loading