8000 Update Spock framework to v2.3. by AlexeyKuznetsov-DD · Pull Request #9138 · DataDog/dd-trace-java · GitHub
[go: up one dir, main page]

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

Filter by extension

Filter by extension < 8000 label class="SelectMenu-item" role="menuitem"> All 1 file type selected

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ dependencies {
implementation("org.ow2.asm", "asm", "9.8")
implementation("org.ow2.asm", "asm-tree", "9.8")

testImplementation("org.spockframework", "spock-core", "2.2-groovy-3.0")
testImplementation("org.spockframework", "spock-core", "2.3-groovy-3.0")
testImplementation("org.codehaus.groovy", "groovy-all", "3.0.17")
}

Expand Down
4 changes: 2 additions & 2 deletions buildSrc/call-site-instrumentation-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies {
implementation("com.github.javaparser", "javaparser-symbol-solver-core", "3.24.4")

testImplementation("net.bytebuddy", "byte-buddy", "1.17.5")
testImplementation("org.spockframework", "spock-core", "2.0-groovy-3.0")
testImplementation("org.spockframework", "spock-core", "2.3-groovy-3.0")
testImplementation("org.objenesis", "objenesis", "3.0.1")
testImplementation("org.codehaus.groovy", "groovy-all", "3.0.17")
testImplementation("javax.servlet", "javax.servlet-api", "3.0.1")
Expand Down Expand Up @@ -68,7 +68,7 @@ val copyCallSiteSources = tasks.register<Copy>("copyCallSiteSources") {
}

tasks {
withType<AbstractCompile>() {
withType<AbstractCompile> {
dependsOn(copyCallSiteSources)
}
}
Expand Down
0