We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42c9521 commit 3787530Copy full SHA for 3787530
grammars/build.gradle
@@ -2,7 +2,6 @@ task distZip(type: Zip) {
2
from(projectDir) {
3
include '*.json'
4
}
5
- archiveBaseName = 'grammars'
6
- archiveVersion = projectVersion
+ archiveName = "${project.name}.zip"
7
destinationDirectory = file("$buildDir/distributions")
8
server/build.gradle
@@ -140,6 +140,10 @@ test {
140
141
142
143
+distZip {
144
145
+}
146
+
147
compileKotlin.dependsOn copyKotlinJVMLib
148
installDist.finalizedBy fixFilePermissions
149
build.finalizedBy installDist
0 commit comments