Publish jfr-events module (#2461)
* Publish jfr-events module * Fix jacoco config error * testJava8
This commit is contained in:
parent
757cd79889
commit
fe061e90bf
|
|
@ -5,6 +5,18 @@ plugins {
|
|||
description = "OpenTelemetry All"
|
||||
ext.moduleName = "io.opentelemetry.all"
|
||||
|
||||
// We don't compile much here, just some API boundary tests. This project is mostly for
|
||||
// aggregating jacoco reports and it doesn't work if this isn't at least as high as the
|
||||
// highest supported Java version in any of our projects. Most of our projects target
|
||||
// Java 8, except for jfr-events.
|
||||
tasks.withType(JavaCompile) {
|
||||
it.options.release = 11
|
||||
}
|
||||
|
||||
tasks.testJava8 {
|
||||
enabled = false
|
||||
}
|
||||
|
||||
dependencies {
|
||||
rootProject.subprojects.each { subproject ->
|
||||
// Generate aggregate coverage report for published modules that enable jacoco.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
plugins {
|
||||
id "java-library"
|
||||
id "maven-publish"
|
||||
}
|
||||
|
||||
description = 'OpenTelemetry SDK Extension JFR'
|
||||
|
|
|
|||
Loading…
Reference in New Issue