File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ phases:
10
10
- |
11
11
# TODO - iterate through the subdirectories to have one build script per runtime
12
12
cd telemetry/jetbrains
13
- ./gradlew test
13
+ ./gradlew build
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ tasks {
49
49
50
50
val validatePackagedSchema by registering {
51
51
group = " build"
52
- description = " Validates that the packaged definition is compatable with the packaged schema"
52
+ description = " Validates that the packaged definition is compatible with the packaged schema"
53
53
doFirst {
54
54
try {
55
55
val telemetrySchema = file(" src/main/resources/telemetrySchema.json" )
@@ -77,6 +77,10 @@ tasks {
77
77
into(" src/test/resources/" )
78
78
}
79
79
80
+ named(" sourcesJar" ).configure {
81
+ dependsOn(copyTelemetryResources)
82
+ }
83
+
80
84
compileKotlin {
81
85
dependsOn(copyTelemetryResources, validatePackagedSchema)
82
86
}
You can’t perform that action at this time.
0 commit comments