You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/incubator/src/testConvertToModel/java/io/opentelemetry/api/incubator/InstrumentationConfigUtilTest.java
Copy file name to clipboardExpand all lines: exporters/zipkin/src/main/java/io/opentelemetry/exporter/zipkin/internal/ZipkinSpanExporterComponentProvider.java
Copy file name to clipboardExpand all lines: exporters/zipkin/src/main/resources/META-INF/services/io.opentelemetry.sdk.autoconfigure.spi.internal.ComponentProvider
// 1. downloadConfigurationSchema - download configuration schema from open-telemetry/opentelemetry-configuration
53
53
// 2. unzipConfigurationSchema - unzip the configuration schema archive contents to $buildDir/configuration/
54
-
// 3. deleteTypeDescriptions - delete type_descriptions.yaml $buildDir/configuration/schema, which is not part of core schema and causes problems resolving type refs
55
-
// 4. generateJsonSchema2Pojo - generate java POJOs from the configuration schema
56
-
// 5. jsonSchema2PojoPostProcessing - perform various post processing on the generated POJOs, e.g. replace javax.annotation.processing.Generated with javax.annotation.Generated, add @SuppressWarning("rawtypes") annotation
57
-
// 6. overwriteJs2p - overwrite original generated classes with versions containing updated @Generated annotation
58
-
// 7. deleteJs2pTmp - delete tmp directory
54
+
// 3. generateJsonSchema2Pojo - generate java POJOs from the configuration schema
55
+
// 4. jsonSchema2PojoPostProcessing - perform various post processing on the generated POJOs, e.g. replace javax.annotation.processing.Generated with javax.annotation.Generated, add @SuppressWarning("rawtypes") annotation
56
+
// 5. overwriteJs2p - overwrite original generated classes with versions containing updated @Generated annotation
57
+
// 6. deleteJs2pTmp - delete tmp directory
59
58
// ... proceed with normal sourcesJar, compileJava, etc
60
59
61
-
val configurationTag ="1.0.0-rc.1"
60
+
val configurationTag ="1.0.0-rc.3"
62
61
val configurationRef ="refs/tags/v$configurationTag"// Replace with commit SHA to point to experiment with a specific commit
63
62
val configurationRepoZip ="https://github.com/open-telemetry/opentelemetry-configuration/archive/$configurationRef.zip"
64
63
val buildDirectory = layout.buildDirectory.asFile.get()
@@ -81,13 +80,8 @@ val unzipConfigurationSchema by tasks.registering(Copy::class) {
81
80
into("$buildDirectory/configuration/")
82
81
}
83
82
84
-
val deleteTypeDescriptions by tasks.registering(Delete::class) {
0 commit comments