Fix ratpack test latest deps (#4679)
This commit is contained in:
parent
6c98ba6b2b
commit
5b88f1bf05
|
@ -7,6 +7,8 @@ dependencies {
|
||||||
library("io.ratpack:ratpack-core:1.4.0")
|
library("io.ratpack:ratpack-core:1.4.0")
|
||||||
|
|
||||||
testImplementation(project(":instrumentation:ratpack-1.4:testing"))
|
testImplementation(project(":instrumentation:ratpack-1.4:testing"))
|
||||||
|
|
||||||
|
testLibrary("io.ratpack:ratpack-test:1.4.0")
|
||||||
testLibrary("io.ratpack:ratpack-guice:1.4.0")
|
testLibrary("io.ratpack:ratpack-guice:1.4.0")
|
||||||
|
|
||||||
if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_11)) {
|
if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_11)) {
|
||||||
|
|
|
@ -5,8 +5,10 @@ plugins {
|
||||||
dependencies {
|
dependencies {
|
||||||
api(project(":testing-common"))
|
api(project(":testing-common"))
|
||||||
|
|
||||||
api("io.ratpack:ratpack-core:1.4.0")
|
// it's important for these to not be api dependencies, because api dependencies pull in their
|
||||||
api("io.ratpack:ratpack-test:1.4.0")
|
// 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("org.codehaus.groovy:groovy-all")
|
||||||
implementation("io.opentelemetry:opentelemetry-api")
|
implementation("io.opentelemetry:opentelemetry-api")
|
||||||
|
|
Loading…
Reference in New Issue