Remove publishing of jfr-streaming (#753)

There hasn't been a release yet since publishing of jfr-streaming was
enabled, and we are planning to move it to instrumentation repo, so
makes sense to limit maven central clutter.
This commit is contained in:
Trask Stalnaker 2023-02-22 11:28:16 -08:00 committed by GitHub
parent 85e2795a72
commit fc6cd97606
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View File

@ -1,8 +1,6 @@
plugins {
id("otel.java-conventions")
id("java-test-fixtures")
id("otel.publish-conventions")
}
description = "OpenTelemetry JFR Streaming"

View File

@ -50,8 +50,9 @@ class JfrTelemetryTest {
metric -> {
assertThat(metric.getInstrumentationScopeInfo().getName())
.isEqualTo("io.opentelemetry.contrib.jfr.streaming");
assertThat(metric.getInstrumentationScopeInfo().getVersion())
.matches("1\\..*-alpha.*");
// TODO (trask) uncomment after moving to instrumentation repo
// assertThat(metric.getInstrumentationScopeInfo().getVersion())
// .matches("1\\..*-alpha.*");
});
;
}