Remove version number from output artifact name

This commit is contained in:
Tamas Vajk
2021-10-20 13:07:41 +02:00
committed by Ian Lynagh
parent ab102245da
commit 48b388daf7
2 changed files with 5 additions and 1 deletions

View File

@@ -1,7 +1,6 @@
plugins {
id 'org.jetbrains.kotlin.jvm' version "${kotlinVersion}"
id 'org.jetbrains.dokka' version '1.4.32'
id "com.vanniktech.maven.publish" version '0.15.1'
}
group 'com.github.codeql'
@@ -21,3 +20,7 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
jvmTarget = "1.8"
}
}
jar {
archiveName = "${OUTPUT_JAR_NAME}"
}

View File

@@ -4,4 +4,5 @@ kotlinVersion=1.5.21
GROUP=com.github.codeql
VERSION_NAME=0.0.1
POM_DESCRIPTION=CodeQL Kotlin extractor
OUTPUT_JAR_NAME=codeql-extractor-kotlin.jar