Fix instrumentation core artifact names (#885)
This commit is contained in:
parent
515fdac34c
commit
138128e251
|
@ -2,6 +2,7 @@ ext {
|
||||||
javaSubPackage = 'servlet'
|
javaSubPackage = 'servlet'
|
||||||
}
|
}
|
||||||
apply from: "$rootDir/gradle/instrumentation-library.gradle"
|
apply from: "$rootDir/gradle/instrumentation-library.gradle"
|
||||||
|
archivesBaseName = "servlet"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation deps.slf4j
|
implementation deps.slf4j
|
||||||
|
|
|
@ -3,6 +3,7 @@ ext{
|
||||||
}
|
}
|
||||||
|
|
||||||
apply from: "$rootDir/gradle/instrumentation-library.gradle"
|
apply from: "$rootDir/gradle/instrumentation-library.gradle"
|
||||||
|
archivesBaseName = "spring-web-3.1"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly "org.springframework:spring-web:3.1.0.RELEASE"
|
compileOnly "org.springframework:spring-web:3.1.0.RELEASE"
|
||||||
|
|
|
@ -4,6 +4,7 @@ ext {
|
||||||
}
|
}
|
||||||
|
|
||||||
apply from: "$rootDir/gradle/instrumentation-library.gradle"
|
apply from: "$rootDir/gradle/instrumentation-library.gradle"
|
||||||
|
archivesBaseName = "spring-webflux-5.0"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly group: 'org.springframework', name: 'spring-webflux', version: '5.0.0.RELEASE'
|
compileOnly group: 'org.springframework', name: 'spring-webflux', version: '5.0.0.RELEASE'
|
||||||
|
|
|
@ -3,9 +3,10 @@ ext{
|
||||||
}
|
}
|
||||||
|
|
||||||
apply from: "$rootDir/gradle/instrumentation-library.gradle"
|
apply from: "$rootDir/gradle/instrumentation-library.gradle"
|
||||||
|
archivesBaseName = "spring-webmvc-3.1"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':instrumentation-core:servlet')
|
implementation project(':instrumentation-core:servlet')
|
||||||
|
|
||||||
compileOnly group: 'org.springframework', name: 'spring-webmvc', version: '3.1.0.RELEASE'
|
compileOnly group: 'org.springframework', name: 'spring-webmvc', version: '3.1.0.RELEASE'
|
||||||
compileOnly group: 'javax.servlet', name: 'javax.servlet-api', version: '3.1.0'
|
compileOnly group: 'javax.servlet', name: 'javax.servlet-api', version: '3.1.0'
|
||||||
|
|
Loading…
Reference in New Issue