Skip to content

Commit

Permalink
1.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Sep 24, 2023
1 parent 9e8e461 commit 9fad880
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 13 deletions.
16 changes: 8 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
val indraVersion = "3.0.1"
val indraVersion = "3.1.3"
id("net.kyori.indra") version indraVersion
id("net.kyori.indra.checkstyle") version indraVersion
id("net.kyori.indra.license-header") version indraVersion
Expand All @@ -11,30 +11,30 @@ version = "1.1.7-SNAPSHOT"
group = "xyz.jpenilla"
description = "Server-side Fabric mod enhancing the console with tab completions, colored log output, command syntax highlighting, command history, and more."

val minecraftVersion = "1.20.1"
val minecraftVersion = "1.20.2"

dependencies {
minecraft("com.mojang", "minecraft", minecraftVersion)
mappings(loom.officialMojangMappings())
modImplementation("net.fabricmc", "fabric-loader", "0.14.21")
modImplementation("net.fabricmc.fabric-api", "fabric-api", "0.83.0+1.20.1")
modImplementation("net.fabricmc", "fabric-loader", "0.14.22")
modImplementation("net.fabricmc.fabric-api", "fabric-api", "0.89.2+1.20.2")

annotationProcessor("org.apache.logging.log4j", "log4j-core", "2.17.1")
annotationProcessor("org.apache.logging.log4j", "log4j-core", "2.19.0")

val jlineVersion = "3.21.0"
val jlineVersion = "3.23.0"
implementation(include("org.jline", "jline", jlineVersion))
implementation(include("org.jline", "jline-terminal-jansi", jlineVersion))

implementation(include("org.fusesource.jansi", "jansi", "2.4.0"))

modImplementation(include("net.kyori", "adventure-platform-fabric", "5.9.0"))
modImplementation(include("net.kyori", "adventure-platform-fabric", "5.10.0"))

implementation(include("com.typesafe:config:1.4.2")!!)
implementation(include("io.leangen.geantyref:geantyref:1.3.13")!!)
implementation(include("org.spongepowered:configurate-core:4.1.2")!!)
implementation(include("org.spongepowered:configurate-hocon:4.1.2")!!)

compileOnly("org.checkerframework", "checker-qual", "3.28.0")
compileOnly("org.checkerframework", "checker-qual", "3.38.0")

implementation(include("net.fabricmc", "mapping-io", "0.4.2"))
}
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
8 changes: 6 additions & 2 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down Expand Up @@ -130,10 +131,13 @@ location of your Java installation."
fi
else
JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi

# Increase the maximum file descriptors if we can.
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ pluginManagement {
repositories {
gradlePluginPortal()
maven("https://maven.fabricmc.net/")
maven("https://maven.quiltmc.org/repository/release/")
maven("https://repo.jpenilla.xyz/snapshots/")
}
}

plugins {
id("quiet-fabric-loom") version "1.2-SNAPSHOT"
id("quiet-fabric-loom") version "1.3-SNAPSHOT"
id("org.gradle.toolchains.foojay-resolver-convention") version "0.7.0"
}

rootProject.name = "better-fabric-console"

0 comments on commit 9fad880

Please sign in to comment.