Migrate jetty httpclient build files to kotlin (#3421)
This commit is contained in:
parent
52616dd87f
commit
47c8a9bfa5
|
@ -1,28 +0,0 @@
|
||||||
plugins {
|
|
||||||
id("otel.javaagent-instrumentation")
|
|
||||||
}
|
|
||||||
|
|
||||||
muzzle {
|
|
||||||
pass {
|
|
||||||
group = "org.eclipse.jetty"
|
|
||||||
module = 'jetty-client'
|
|
||||||
versions = "[9.2,9.4.+)"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//Jetty client 9.2 is the best starting point, HttpClient.send() is stable there
|
|
||||||
def jettyVers_base9 = '9.2.0.v20140526'
|
|
||||||
|
|
||||||
|
|
||||||
dependencies {
|
|
||||||
implementation project(':instrumentation:jetty-httpclient:jetty-httpclient-9.2:library')
|
|
||||||
|
|
||||||
library "org.eclipse.jetty:jetty-client:${jettyVers_base9}"
|
|
||||||
latestDepTestLibrary "org.eclipse.jetty:jetty-client:9.+"
|
|
||||||
|
|
||||||
testImplementation project(':instrumentation:jetty-httpclient:jetty-httpclient-9.2:testing')
|
|
||||||
testImplementation("org.eclipse.jetty:jetty-server:${jettyVers_base9}") {
|
|
||||||
exclude group: 'org.eclipse.jetty', module: 'jetty-client'
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
plugins {
|
||||||
|
id("otel.javaagent-instrumentation")
|
||||||
|
}
|
||||||
|
|
||||||
|
muzzle {
|
||||||
|
pass {
|
||||||
|
group.set("org.eclipse.jetty")
|
||||||
|
module.set("jetty-client")
|
||||||
|
versions.set("[9.2,9.4.+)")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//Jetty client 9.2 is the best starting point, HttpClient.send() is stable there
|
||||||
|
val jettyVers_base9 = "9.2.0.v20140526"
|
||||||
|
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation(project(":instrumentation:jetty-httpclient:jetty-httpclient-9.2:library"))
|
||||||
|
|
||||||
|
library("org.eclipse.jetty:jetty-client:${jettyVers_base9}")
|
||||||
|
latestDepTestLibrary("org.eclipse.jetty:jetty-client:9.+")
|
||||||
|
|
||||||
|
testImplementation(project(":instrumentation:jetty-httpclient:jetty-httpclient-9.2:testing"))
|
||||||
|
}
|
|
@ -1,17 +0,0 @@
|
||||||
plugins {
|
|
||||||
id("otel.library-instrumentation")
|
|
||||||
id("net.ltgt.errorprone")
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//Jetty client 9.2 is the best starting point, HttpClient.send() is stable there
|
|
||||||
def jettyVers_base9 = '9.2.0.v20140526'
|
|
||||||
|
|
||||||
dependencies {
|
|
||||||
library "org.eclipse.jetty:jetty-client:${jettyVers_base9}"
|
|
||||||
latestDepTestLibrary "org.eclipse.jetty:jetty-client:9.+"
|
|
||||||
testImplementation project(':instrumentation:jetty-httpclient::jetty-httpclient-9.2:testing')
|
|
||||||
|
|
||||||
implementation "org.slf4j:slf4j-api"
|
|
||||||
}
|
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
plugins {
|
||||||
|
id("otel.library-instrumentation")
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//Jetty client 9.2 is the best starting point, HttpClient.send() is stable there
|
||||||
|
val jettyVers_base9 = "9.2.0.v20140526"
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
library("org.eclipse.jetty:jetty-client:${jettyVers_base9}")
|
||||||
|
latestDepTestLibrary("org.eclipse.jetty:jetty-client:9.+")
|
||||||
|
testImplementation(project(":instrumentation:jetty-httpclient::jetty-httpclient-9.2:testing"))
|
||||||
|
|
||||||
|
implementation("org.slf4j:slf4j-api")
|
||||||
|
}
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
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"
|
|
||||||
}
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
plugins {
|
||||||
|
id("otel.java-conventions")
|
||||||
|
}
|
||||||
|
|
||||||
|
//Jetty client 9.2 is the best starting point, HttpClient.send() is stable there
|
||||||
|
val jettyVers_base9 = "9.2.0.v20140526"
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
api(project(":testing-common"))
|
||||||
|
|
||||||
|
|
||||||
|
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")
|
||||||
|
}
|
Loading…
Reference in New Issue