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: sdk-extensions/incubator/build.gradle.kts
+5-11Lines changed: 5 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -52,11 +52,10 @@ dependencies {
52
52
// The sequence of tasks is:
53
53
// 1. downloadConfigurationSchema - download configuration schema from open-telemetry/opentelemetry-configuration
54
54
// 2. unzipConfigurationSchema - unzip the configuration schema archive contents to $buildDir/configuration/
55
-
// 3. deleteTypeDescriptions - delete type_descriptions.yaml $buildDir/configuration/schema, which is not part of core schema and causes problems resolving type refs
56
-
// 4. generateJsonSchema2Pojo - generate java POJOs from the configuration schema
57
-
// 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
58
-
// 6. overwriteJs2p - overwrite original generated classes with versions containing updated @Generated annotation
59
-
// 7. deleteJs2pTmp - delete tmp directory
55
+
// 3. generateJsonSchema2Pojo - generate java POJOs from the configuration schema
56
+
// 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
57
+
// 5. overwriteJs2p - overwrite original generated classes with versions containing updated @Generated annotation
58
+
// 6. deleteJs2pTmp - delete tmp directory
60
59
// ... proceed with normal sourcesJar, compileJava, etc
61
60
62
61
val configurationTag ="1.0.0-rc.1"
@@ -82,11 +81,6 @@ val unzipConfigurationSchema by tasks.registering(Copy::class) {
82
81
into("$buildDirectory/configuration/")
83
82
}
84
83
85
-
val deleteTypeDescriptions by tasks.registering(Delete::class) {
0 commit comments