Skip to content

Commit f65ba44

Browse files
authored
Upgrade luaj-jse to version 3.0.2
Updated luaj dependency to version 3.0.2 and changed its inclusion method.
1 parent b02e530 commit f65ba44

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,10 @@ dependencies {
5555
minecraft("com.mojang:minecraft:${property("minecraft_version")}")
5656
mappings(loom.officialMojangMappings())
5757

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")
58+
val luaj = files("libs/luaj-jse-3.0.2.jar")
59+
implementation(luaj)
60+
include(luaj)
61+
shadowModImpl(files(luaj)
6162

6263
modImplementation("net.fabricmc:fabric-loader:${property("loader_version")}")
6364
modImplementation("net.fabricmc.fabric-api:fabric-api:${property("fabric_version")}")

0 commit comments

Comments
 (0)