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 {
|
plugins {
|
||||||
id("otel.java-conventions")
|
id("otel.java-conventions")
|
||||||
id("java-test-fixtures")
|
id("java-test-fixtures")
|
||||||
|
|
||||||
id("otel.publish-conventions")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "OpenTelemetry JFR Streaming"
|
description = "OpenTelemetry JFR Streaming"
|
||||||
|
|
|
||||||
|
|
@ -50,8 +50,9 @@ class JfrTelemetryTest {
|
||||||
metric -> {
|
metric -> {
|
||||||
assertThat(metric.getInstrumentationScopeInfo().getName())
|
assertThat(metric.getInstrumentationScopeInfo().getName())
|
||||||
.isEqualTo("io.opentelemetry.contrib.jfr.streaming");
|
.isEqualTo("io.opentelemetry.contrib.jfr.streaming");
|
||||||
assertThat(metric.getInstrumentationScopeInfo().getVersion())
|
// TODO (trask) uncomment after moving to instrumentation repo
|
||||||
.matches("1\\..*-alpha.*");
|
// assertThat(metric.getInstrumentationScopeInfo().getVersion())
|
||||||
|
// .matches("1\\..*-alpha.*");
|
||||||
});
|
});
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue