Skip to content

Commit 3191f40

Browse files
authored
Attempt to fix the broken release PR #7549 (#7551)
1 parent bf01155 commit 3191f40

File tree

50 files changed

+106
-55
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+106
-55
lines changed

README.md

Lines changed: 30 additions & 30 deletions

buildSrc/src/main/kotlin/otel.japicmp-conventions.gradle.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ plugins {
1616
*/
1717
val latestReleasedVersion: String by lazy {
1818
// hack to find the current released version of the project
19-
val temp: Configuration = configurations.create("tempConfig")
19+
val temp: Configuration = configurations.create("tempConfig") {
20+
resolutionStrategy.cacheChangingModulesFor(0, "seconds")
21+
resolutionStrategy.cacheDynamicVersionsFor(0, "seconds")
22+
}
2023
// pick the api, since it's always there.
2124
dependencies.add(temp.name, "io.opentelemetry:opentelemetry-api:latest.release")
2225
val moduleVersion = configurations["tempConfig"].resolvedConfiguration.firstLevelModuleDependencies.elementAt(0).moduleVersion
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Comparing source compatibility of opentelemetry-api-1.53.jar against opentelemetry-api-1.52.0.jar
2+
No changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Comparing source compatibility of opentelemetry-common-1.53.jar against opentelemetry-common-1.52.0.jar
2+
No changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Comparing source compatibility of opentelemetry-context-1.53.jar against opentelemetry-context-1.52.0.jar
2+
No changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Comparing source compatibility of opentelemetry-exporter-common-1.53.jar against opentelemetry-exporter-common-1.52.0.jar
2+
No changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Comparing source compatibility of opentelemetry-exporter-logging-otlp-1.53.jar against opentelemetry-exporter-logging-otlp-1.52.0.jar
2+
No changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Comparing source compatibility of opentelemetry-exporter-logging-1.53.jar against opentelemetry-exporter-logging-1.52.0.jar
2+
No changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Comparing source compatibility of opentelemetry-exporter-otlp-common-1.53.jar against opentelemetry-exporter-otlp-common-1.52.0.jar
2+
No changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Comparing source compatibility of opentelemetry-exporter-otlp-1.53.jar against opentelemetry-exporter-otlp-1.52.0.jar
2+
No changes.

0 commit comments

Comments
 (0)