Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
28 lines
855 B
Diff
28 lines
855 B
Diff
diff --git a/build.gradle b/build.gradle
|
|
index 6adb040..f442496 100644
|
|
--- a/build.gradle
|
|
+++ b/build.gradle
|
|
@@ -56,8 +56,10 @@ sourceCompatibility = 1.8
|
|
javadoc.options.memberLevel = JavadocMemberLevel.PRIVATE
|
|
group = 'dev.roanh.kps'
|
|
ext.artifact = 'keyspersecond'
|
|
-shadowJar.archiveName = 'KeysPerSecond-v' + version + '.jar'
|
|
-application.mainClassName = 'dev.roanh.kps.Main'
|
|
+shadowJar.archiveBaseName = 'KeysPerSecond'
|
|
+shadowJar.archiveVersion = 'v' + version
|
|
+shadowJar.archiveClassifier = ''
|
|
+application.mainClass = 'dev.roanh.kps.Main'
|
|
|
|
test{
|
|
useJUnitPlatform()
|
|
@@ -129,7 +131,7 @@ shadowJar{
|
|
|
|
launch4j{
|
|
jarTask = project.tasks.shadowJar
|
|
- mainClassName = application.mainClassName
|
|
+ mainClassName = application.mainClass
|
|
icon = "${projectDir}/kps.ico"
|
|
jreMinVersion = project.sourceCompatibility
|
|
bundledJrePath = "%JAVA_HOME%"
|
|
--
|