Fix ratpack test latest deps (#4679)

This commit is contained in:
Trask Stalnaker 2021-11-20 00:56:59 -08:00 committed by GitHub
parent 6c98ba6b2b
commit 5b88f1bf05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -7,6 +7,8 @@ dependencies {
library("io.ratpack:ratpack-core:1.4.0")
testImplementation(project(":instrumentation:ratpack-1.4:testing"))
testLibrary("io.ratpack:ratpack-test:1.4.0")
testLibrary("io.ratpack:ratpack-guice:1.4.0")
if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_11)) {

View File

@ -5,8 +5,10 @@ plugins {
dependencies {
api(project(":testing-common"))
api("io.ratpack:ratpack-core:1.4.0")
api("io.ratpack:ratpack-test:1.4.0")
// it's important for these to not be api dependencies, because api dependencies pull in their
// transitive dependencies as well, which causes issues for testLatestDep
implementation("io.ratpack:ratpack-core:1.4.0")
implementation("io.ratpack:ratpack-test:1.4.0")
implementation("org.codehaus.groovy:groovy-all")
implementation("io.opentelemetry:opentelemetry-api")