Update to 26.1

This commit is contained in:
skippyall
2026-05-16 23:04:15 +02:00
parent 8423d9c7cd
commit 7db92ffa33
14 changed files with 113 additions and 74 deletions
+5 -10
View File
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '1.16-SNAPSHOT' apply true
id 'net.fabricmc.fabric-loom' version "1.16-SNAPSHOT" apply true
id 'maven-publish'
id 'com.gradleup.shadow' version '9.4.1'
}
@@ -29,12 +29,11 @@ repositories {
dependencies {
// To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
implementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
implementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modImplementation include("net.kyori:adventure-platform-fabric:${project.adventure_platform_fabric_version}")
implementation include("net.kyori:adventure-platform-fabric:${project.adventure_platform_fabric_version}")
implementation project(":common")
shadowBundle(project(":common"))
@@ -53,7 +52,7 @@ processResources {
}
}
def targetJavaVersion = 21
def targetJavaVersion = 25
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
@@ -88,10 +87,6 @@ shadowJar {
relocate("de.themoep.minedown.adventure", "io.github.skippyall.minedown")
}
remapJar {
input.set shadowJar.archiveFile
}
// configure the maven publication
publishing {
publications {