File tree Expand file tree Collapse file tree
sdk-extensions/jfr-events Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,18 @@ plugins {
55description = " OpenTelemetry All"
66ext. moduleName = " io.opentelemetry.all"
77
8+ // We don't compile much here, just some API boundary tests. This project is mostly for
9+ // aggregating jacoco reports and it doesn't work if this isn't at least as high as the
10+ // highest supported Java version in any of our projects. Most of our projects target
11+ // Java 8, except for jfr-events.
12+ tasks. withType(JavaCompile ) {
13+ it. options. release = 11
14+ }
15+
16+ tasks. testJava8 {
17+ enabled = false
18+ }
19+
820dependencies {
921 rootProject. subprojects. each { subproject ->
1022 // Generate aggregate coverage report for published modules that enable jacoco.
Original file line number Diff line number Diff line change 11plugins {
22 id " java-library"
3+ id " maven-publish"
34}
45
56description = ' OpenTelemetry SDK Extension JFR'
You can’t perform that action at this time.
0 commit comments