Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ object Versions {

// Fabric
// check these on https://fabricmc.net/develop
const val FABRIC_YARN_MAPPINGS = "1.21.8+build.1"
const val FABRIC_YARN_MAPPINGS = "1.21.11-pre5+build.1"
val FABRIC_MINECRAFT = FABRIC_YARN_MAPPINGS.substringBefore('+')
const val FABRIC_LOOM_PLUGIN = "1.12.2"
const val FABRIC_LOADER = "0.17.2"
const val FABRIC_COMMAND_API_V2 = "2.3.4+33df5e6e5d"
const val FABRIC_LOOM_PLUGIN = "1.14.10"
const val FABRIC_LOADER = "0.18.4"
const val FABRIC_COMMAND_API_V2 = "2.4.8+9c919dacc9"
const val FABRIC_COMMAND_API_V1 = "1.2.56+f71b366f73"
const val FABRIC_LIFECYCLE_EVENTS_V1 = "2.6.7+33df5e6e5d"
const val FABRIC_LIFECYCLE_EVENTS_V1 = "2.6.16+9c919dacc9"

// TelegramBots
const val TELEGRAM_BOTS = "9.2.0"
Expand Down
8 changes: 4 additions & 4 deletions examples/fabric/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("java")
id("fabric-loom") version "1.12.2"
id("fabric-loom") version "1.14.10"
}

java {
Expand All @@ -17,13 +17,13 @@ repositories {
}

dependencies {
val yarnVersion = "1.21.8+build.1"
val yarnVersion = "1.21.11-pre5+build.1"
val minecraftVersion = yarnVersion.substringBefore('+')
mappings("net.fabricmc:yarn:$yarnVersion")
minecraft("com.mojang:minecraft:$minecraftVersion")

modImplementation("net.fabricmc:fabric-loader:0.17.2")
modImplementation("net.fabricmc.fabric-api:fabric-api:0.132.0+1.21.8")
modImplementation("net.fabricmc:fabric-loader:0.18.4")
modImplementation("net.fabricmc.fabric-api:fabric-api:0.141.2+26.1")

modLocalRuntime("maven.modrinth:fabric-permissions-api:0.5.0")
modLocalRuntime("maven.modrinth:luckperms:5.4.36-forge")
Expand Down
Loading