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:
parent
85e2795a72
commit
fc6cd97606
|
|
@ -1,8 +1,6 @@
|
|||
plugins {
|
||||
id("otel.java-conventions")
|
||||
id("java-test-fixtures")
|
||||
|
||||
id("otel.publish-conventions")
|
||||
}
|
||||
|
||||
description = "OpenTelemetry JFR Streaming"
|
||||
|
|
|
|||
|
|
@ -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.*");
|
||||
});
|
||||
;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue