File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -14,4 +14,5 @@ dependencies {
14
14
implementation(" me.champeau.gradle:japicmp-gradle-plugin:0.4.2" )
15
15
// Needed for japicmp but not automatically brought in for some reason.
16
16
implementation(" com.google.guava:guava:32.1.3-jre" )
17
+ implementation(" biz.aQute.bnd:biz.aQute.bnd.gradle:7.0.0" )
17
18
}
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ plugins {
8
8
eclipse
9
9
idea
10
10
11
+ id(" biz.aQute.bnd.builder" )
11
12
id(" otel.spotless-conventions" )
12
13
}
13
14
@@ -88,11 +89,13 @@ tasks {
88
89
89
90
manifest {
90
91
attributes(
91
- " Automatic-Module-Name" to otelJava.moduleName,
92
+ " Automatic-Module-Name" to otelJava.moduleName,
92
93
" Built-By" to System .getProperty(" user.name" ),
93
94
" Built-JDK" to System .getProperty(" java.version" ),
94
95
" Implementation-Title" to project.base.archivesName,
95
- " Implementation-Version" to project.version)
96
+ " Implementation-Version" to project.version,
97
+ " -exportcontents" to " io.opentelemetry.semconv.*"
98
+ )
96
99
}
97
100
}
98
101
You can’t perform that action at this time.
0 commit comments