21 lines
460 B
Plaintext
21 lines
460 B
Plaintext
plugins {
|
|
id("otel.java-conventions")
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://maven.restlet.talend.com/")
|
|
mavenLocal()
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":testing-common"))
|
|
|
|
implementation("org.restlet.jse:org.restlet:2.0.2")
|
|
implementation("org.restlet.jse:org.restlet.ext.spring:2.0.2")
|
|
|
|
implementation("org.apache.groovy:groovy")
|
|
implementation("io.opentelemetry:opentelemetry-api")
|
|
implementation("org.spockframework:spock-core")
|
|
}
|