Skip to content

Commit fc6cd97

Browse files
authored
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.
1 parent 85e2795 commit fc6cd97

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

jfr-streaming/build.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
plugins {
22
id("otel.java-conventions")
33
id("java-test-fixtures")
4-
5-
id("otel.publish-conventions")
64
}
75

86
description = "OpenTelemetry JFR Streaming"

jfr-streaming/src/test/java/io/opentelemetry/contrib/jfr/streaming/JfrTelemetryTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,9 @@ void create_Default() {
5050
metric -> {
5151
assertThat(metric.getInstrumentationScopeInfo().getName())
5252
.isEqualTo("io.opentelemetry.contrib.jfr.streaming");
53-
assertThat(metric.getInstrumentationScopeInfo().getVersion())
54-
.matches("1\\..*-alpha.*");
53+
// TODO (trask) uncomment after moving to instrumentation repo
54+
// assertThat(metric.getInstrumentationScopeInfo().getVersion())
55+
// .matches("1\\..*-alpha.*");
5556
});
5657
;
5758
}

0 commit comments

Comments
 (0)