Skip to content

Commit

Permalink
Target 1.20.4 and remove adventure-platform dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Konicai committed Dec 14, 2023
1 parent 5633bb8 commit a141f57
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 deletions.
15 changes: 1 addition & 14 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,6 @@ dependencies {
because "Commands library implementation for Fabric"
})

include(modImplementation('net.kyori:adventure-platform-fabric:5.10.0') {
because "Chat library implementation for Fabric that includes methods for communicating with the server"
// Thanks to zml for this fix
// The package modifies Brigadier which causes a LinkageError at runtime if included
exclude group: 'ca.stellardrift', module: "colonel"
})

// Lombok
compileOnly "org.projectlombok:lombok:${project.lombok_version}"
annotationProcessor "org.projectlombok:lombok:${project.lombok_version}"
Expand All @@ -69,12 +62,6 @@ repositories {
maven {
url = 'https://oss.sonatype.org/content/repositories/snapshots'
}
// specifically for adventure-platform-fabric:5.4.0-SNAPSHOT
maven {
name = "sonatype-oss-snapshots1"
url = "https://s01.oss.sonatype.org/content/repositories/snapshots/"
mavenContent { snapshotsOnly() }
}
// Standard OpenCollab repositories
maven {
name = 'opencollab-release-repo'
Expand Down Expand Up @@ -168,7 +155,7 @@ modrinth {
syncBodyFrom = rootProject.file("README.md").text

uploadFile = tasks.getByPath("remappedModrinthJar")
gameVersions.addAll("1.20.2")
gameVersions.addAll("1.20.4")

loaders = ["fabric"]

Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
org.gradle.jvmargs=-Xmx2G
# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.20.2
loader_version=0.14.22
minecraft_version=1.20.4
loader_version=0.15.2
# Mod Properties
mod_version=2.2.0-SNAPSHOT
maven_group=org.geysermc.floodgate
archives_base_name=floodgate-fabric
# Dependencies
# check this on https://modmuss50.me/fabric.html
fabric_version=0.89.2+1.20.2
fabric_version=0.91.2+1.20.4
# Our stuff
lombok_version=1.18.20

0 comments on commit a141f57

Please sign in to comment.