Update to 1.19.3

This commit is contained in:
Wasinthorn Suksri
2022-12-20 14:39:40 +07:00
parent d6c7a434ae
commit 11d0c5d348
15 changed files with 219 additions and 147 deletions

View File

@@ -1,16 +1,16 @@
plugins {
id 'fabric-loom' version '0.8-SNAPSHOT'
id 'fabric-loom' version '1.0-SNAPSHOT'
id 'maven-publish'
}
sourceCompatibility = JavaVersion.VERSION_16
targetCompatibility = JavaVersion.VERSION_16
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
archivesBaseName = project.archives_base_name
version = project.mod_version
group = project.maven_group
minecraft {
loom {
}
dependencies {
@@ -18,7 +18,6 @@ dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
}
@@ -31,14 +30,8 @@ processResources {
}
tasks.withType(JavaCompile).configureEach {
// ensure that the encoding is set to UTF-8, no matter what the system default is
// this fixes some edge cases with special characters not displaying correctly
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
// If Javadoc is generated, this must be specified in that task too.
it.options.encoding = "UTF-8"
// Minecraft 1.17 (21w19a) upwards uses Java 16.
it.options.release = 16
it.options.encoding = "UTF-8"
it.options.release = 17
}
java {
@@ -54,6 +47,11 @@ jar {
}
}
remapJar {
archiveVersion = "v${project.version}"
archiveBaseName = "${project.archivesBaseName}-mc${project.minecraft_version}"
}
// configure the maven publication
publishing {
publications {