fix logo, add gitignore, replace depreacted "version".

This commit is contained in:
alexcrea 2024-02-02 20:06:54 +01:00
parent 67152e7d43
commit 60dd28024e
3 changed files with 3 additions and 1 deletions

View file

@ -32,7 +32,7 @@ val fatJar = tasks.register<Jar>("fatJar") {
manifest {
attributes.apply { put("Main-Class", "io.delilaheve.UnsafeEnchants") }
}
archiveFileName.set("${rootProject.name}-${version}.jar")
archiveFileName.set("${rootProject.name}-${archiveVersion}.jar")
exclude("META-INF/*.RSA", "META-INF/*.SF", "META-INF/*.DSA")
duplicatesStrategy = DuplicatesStrategy.WARN
from(configurations.runtimeClasspath.get().map { if (it.isDirectory) it else zipTree(it) })