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

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/.idea/
/.gradle/

View file

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 58 KiB

Before After
Before After