We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b02e530 commit f65ba44Copy full SHA for f65ba44
1 file changed
build.gradle.kts
@@ -55,9 +55,10 @@ dependencies {
55
minecraft("com.mojang:minecraft:${property("minecraft_version")}")
56
mappings(loom.officialMojangMappings())
57
58
- implementation("org.luaj:luaj-jse:3.0.1")
59
- include("org.luaj:luaj-jse:3.0.1")
60
- shadowModImpl("org.luaj:luaj-jse:3.0.1")
+ val luaj = files("libs/luaj-jse-3.0.2.jar")
+ implementation(luaj)
+ include(luaj)
61
+ shadowModImpl(files(luaj)
62
63
modImplementation("net.fabricmc:fabric-loader:${property("loader_version")}")
64
modImplementation("net.fabricmc.fabric-api:fabric-api:${property("fabric_version")}")
0 commit comments