23 lines
618 B
Groovy
23 lines
618 B
Groovy
plugins {
|
|
id("otel.java-conventions")
|
|
}
|
|
|
|
//Jetty client 9.2 is the best starting point, HttpClient.send() is stable there
|
|
def jettyVers_base9 = '9.2.0.v20140526'
|
|
|
|
dependencies {
|
|
api(project(':testing-common')) {
|
|
exclude group: 'org.eclipse.jetty', module: 'jetty-client'
|
|
exclude group: 'org.eclipse.jetty', module: 'jetty-server'
|
|
}
|
|
|
|
|
|
api "org.eclipse.jetty:jetty-client:${jettyVers_base9}"
|
|
|
|
implementation "org.junit.jupiter:junit-jupiter-api"
|
|
|
|
implementation "org.codehaus.groovy:groovy-all"
|
|
implementation "io.opentelemetry:opentelemetry-api"
|
|
implementation "org.spockframework:spock-core"
|
|
}
|