From 8f48dfa875a72272c0321e817b1e4f7f053b516a Mon Sep 17 00:00:00 2001 From: Anna Nosek Date: Tue, 14 Sep 2021 18:52:29 +0200 Subject: [PATCH] Fix latestDepTests in Restlet instrumentation (#4121) * add latestDepTestLibrary * spotless --- instrumentation/restlet/restlet-1.0/javaagent/build.gradle.kts | 3 +++ instrumentation/restlet/restlet-1.0/library/build.gradle.kts | 3 +++ 2 files changed, 6 insertions(+) diff --git a/instrumentation/restlet/restlet-1.0/javaagent/build.gradle.kts b/instrumentation/restlet/restlet-1.0/javaagent/build.gradle.kts index 7a0122a031..67c28aca77 100644 --- a/instrumentation/restlet/restlet-1.0/javaagent/build.gradle.kts +++ b/instrumentation/restlet/restlet-1.0/javaagent/build.gradle.kts @@ -25,4 +25,7 @@ dependencies { implementation(project(":instrumentation:restlet:restlet-1.0:library")) testImplementation(project(":instrumentation:restlet:restlet-1.0:testing")) + + latestDepTestLibrary("org.restlet:org.restlet:1.1.+") + latestDepTestLibrary("com.noelios.restlet:com.noelios.restlet:1.1.+") } diff --git a/instrumentation/restlet/restlet-1.0/library/build.gradle.kts b/instrumentation/restlet/restlet-1.0/library/build.gradle.kts index 569dbcfedf..cd234f6e75 100644 --- a/instrumentation/restlet/restlet-1.0/library/build.gradle.kts +++ b/instrumentation/restlet/restlet-1.0/library/build.gradle.kts @@ -17,4 +17,7 @@ dependencies { library("com.noelios.restlet:com.noelios.restlet:1.1.5") testImplementation(project(":instrumentation:restlet:restlet-1.0:testing")) + + latestDepTestLibrary("org.restlet:org.restlet:1.1.+") + latestDepTestLibrary("com.noelios.restlet:com.noelios.restlet:1.1.+") }