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 7948d85 commit 9477004Copy full SHA for 9477004
grammars/build.gradle
@@ -2,6 +2,6 @@ task distZip(type: Zip) {
2
from(projectDir) {
3
include '*.json'
4
}
5
- archiveName = "${project.name}.zip"
+ archiveFileName = "${project.name}.zip"
6
destinationDirectory = file("$buildDir/distributions")
7
server/build.gradle
@@ -79,7 +79,7 @@ configurations.all { config ->
79
80
81
applicationDistribution.into('bin') {
82
- fileMode = 0755
+ fileMode = 755
83
84
85
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
@@ -148,7 +148,7 @@ test {
148
149
150
distZip {
151
152
153
154
compileKotlin.dependsOn copyKotlinJVMLib
0 commit comments