Skip to content

Commit 3787530

Browse files
committed
Remove version postfix from ZIP distributions
This makes linking to the latest release via GitHub easier.
1 parent 42c9521 commit 3787530

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

grammars/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ task distZip(type: Zip) {
22
from(projectDir) {
33
include '*.json'
44
}
5-
archiveBaseName = 'grammars'
6-
archiveVersion = projectVersion
5+
archiveName = "${project.name}.zip"
76
destinationDirectory = file("$buildDir/distributions")
87
}

server/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,10 @@ test {
140140
}
141141
}
142142

143+
distZip {
144+
archiveName = "${project.name}.zip"
145+
}
146+
143147
compileKotlin.dependsOn copyKotlinJVMLib
144148
installDist.finalizedBy fixFilePermissions
145149
build.finalizedBy installDist

0 commit comments

Comments
 (0)