24 lines
594 B
Plaintext
24 lines
594 B
Plaintext
plugins {
|
|
id("otel.library-instrumentation")
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://maven.restlet.talend.com/")
|
|
mavenLocal()
|
|
}
|
|
|
|
dependencies {
|
|
|
|
compileOnly("com.google.auto.value:auto-value-annotations")
|
|
annotationProcessor("com.google.auto.value:auto-value")
|
|
|
|
library("org.restlet:org.restlet:1.1.5")
|
|
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.+")
|
|
}
|