Bump to 2.0.4, specify automatic module name

dependabot/gradle/net.kyori-adventure-api-4.14.0 2.0.4
William 2 years ago
parent 6301f2cd15
commit 406cbf7268
No known key found for this signature in database

@ -6,7 +6,7 @@ plugins {
} }
group 'net.william278' group 'net.william278'
version '2.0.3' version '2.0.4'
defaultTasks 'licenseFormat', 'build' defaultTasks 'licenseFormat', 'build'
repositories { repositories {
@ -23,10 +23,16 @@ dependencies {
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.3' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.3'
} }
compileJava.options.encoding = 'UTF-8' tasks {
compileJava {
tasks.withType(JavaCompile).configureEach { options.encoding = 'UTF-8'
options.encoding = 'UTF-8' options.release.set(11)
}
jar {
manifest {
attributes('Automatic-Module-Name': 'net.william278.desertwell')
}
}
} }
license { license {

Loading…
Cancel
Save