File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
src/main/java/io/opentelemetry/instrumentation/gradle Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -34,13 +34,13 @@ subprojects {
34
34
extra.set(" versions" , mapOf (
35
35
// when updating these values, some values must also be updated in buildSrc as this map
36
36
// cannot be accessed there
37
- " opentelemetry" to " 1.10.0 " ,
37
+ " opentelemetry" to " 1.10.1 " ,
38
38
" opentelemetry_proto" to " 0.11.0-alpha" ,
39
- " opentelemetry_java_agent" to " 1.10.0 -alpha" ,
40
- " opentelemetry_java_agent_all" to " 1.10.0 " ,
41
- " opentelemetry_gradle_plugin" to " 1.10.0 -alpha" ,
39
+ " opentelemetry_java_agent" to " 1.10.1 -alpha" ,
40
+ " opentelemetry_java_agent_all" to " 1.10.1 " ,
41
+ " opentelemetry_gradle_plugin" to " 1.10.1 -alpha" ,
42
42
" byte_buddy" to " 1.12.6" ,
43
- " slf4j" to " 1.7.30 "
43
+ " slf4j" to " 1.7.32 "
44
44
))
45
45
46
46
apply<JavaPlugin >()
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ repositories {
27
27
dependencies {
28
28
implementation(gradleApi())
29
29
implementation(localGroovy())
30
- val otelInstrumentationVersion = " 1.10.0 -alpha"
30
+ val otelInstrumentationVersion = " 1.10.1 -alpha"
31
31
implementation(" io.opentelemetry.javaagent:opentelemetry-muzzle:$otelInstrumentationVersion " )
32
32
implementation(" io.opentelemetry.instrumentation.muzzle-generation:io.opentelemetry.instrumentation.muzzle-generation.gradle.plugin:$otelInstrumentationVersion " )
33
33
implementation(" io.opentelemetry.instrumentation.muzzle-check:io.opentelemetry.instrumentation.muzzle-check.gradle.plugin:$otelInstrumentationVersion " )
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ private void addDependencies(Project project) {
54
54
@ SuppressWarnings ("unchecked" ) final Map <String , String > versions = Objects .requireNonNull (
55
55
(Map <String , String >) project .getExtensions ().getExtraProperties ().get ("versions" ));
56
56
57
- dependencies .add ("implementation" , "org.slf4j:slf4j-api:1.7.30" );
57
+ dependencies .add ("implementation" , "org.slf4j:slf4j-api:" + versions . get ( "slf4j" ) );
58
58
dependencies .add ("compileOnly" , "com.google.auto.service:auto-service-annotations:1.0" );
59
59
dependencies .add ("annotationProcessor" , "com.google.auto.service:auto-service:1.0" );
60
60
dependencies .add ("implementation" , "net.bytebuddy:byte-buddy-dep:" + versions .get ("byte_buddy" ));
You can’t perform that action at this time.
0 commit comments