Skip to content

Commit 138128e

Browse files
authored
Fix instrumentation core artifact names (#885)
1 parent 515fdac commit 138128e

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

instrumentation-core/servlet/servlet.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ ext {
22
javaSubPackage = 'servlet'
33
}
44
apply from: "$rootDir/gradle/instrumentation-library.gradle"
5+
archivesBaseName = "servlet"
56

67
dependencies {
78
implementation deps.slf4j

instrumentation-core/spring/spring-web-3.1/spring-web-3.1.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ ext{
33
}
44

55
apply from: "$rootDir/gradle/instrumentation-library.gradle"
6+
archivesBaseName = "spring-web-3.1"
67

78
dependencies {
89
compileOnly "org.springframework:spring-web:3.1.0.RELEASE"
9-
}
10+
}

instrumentation-core/spring/spring-webflux-5.0/spring-webflux-5.0.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ ext {
44
}
55

66
apply from: "$rootDir/gradle/instrumentation-library.gradle"
7+
archivesBaseName = "spring-webflux-5.0"
78

89
dependencies {
910
compileOnly group: 'org.springframework', name: 'spring-webflux', version: '5.0.0.RELEASE'
1011
compileOnly group: 'io.projectreactor.ipc', name: 'reactor-netty', version: '0.7.0.RELEASE'
11-
}
12+
}

instrumentation-core/spring/spring-webmvc-3.1/spring-webmvc-3.1.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ ext{
33
}
44

55
apply from: "$rootDir/gradle/instrumentation-library.gradle"
6+
archivesBaseName = "spring-webmvc-3.1"
67

78
dependencies {
8-
api project(':instrumentation-core:servlet')
9+
implementation project(':instrumentation-core:servlet')
910

1011
compileOnly group: 'org.springframework', name: 'spring-webmvc', version: '3.1.0.RELEASE'
1112
compileOnly group: 'javax.servlet', name: 'javax.servlet-api', version: '3.1.0'

0 commit comments

Comments
 (0)