From 2f47aa0652c72c85efc3f8354f2735d336ff33f9 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sun, 4 Feb 2024 12:10:19 +0700 Subject: [PATCH] Remove unneeded lwjgl libs --- build.gradle.kts | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index d0d1a0b0..d2e777eb 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -57,28 +57,15 @@ dependencies { implementation(platform("org.lwjgl:lwjgl-bom:$lwjglVersion")) implementation("org.lwjgl", "lwjgl") - implementation("org.lwjgl", "lwjgl-assimp") - implementation("org.lwjgl", "lwjgl-bgfx") implementation("org.lwjgl", "lwjgl-glfw") - implementation("org.lwjgl", "lwjgl-nanovg") - implementation("org.lwjgl", "lwjgl-nuklear") - implementation("org.lwjgl", "lwjgl-openal") implementation("org.lwjgl", "lwjgl-opengl") implementation("org.lwjgl", "lwjgl-opus") - implementation("org.lwjgl", "lwjgl-par") implementation("org.lwjgl", "lwjgl-stb") - implementation("org.lwjgl", "lwjgl-vulkan") runtimeOnly("org.lwjgl", "lwjgl", classifier = lwjglNatives) - runtimeOnly("org.lwjgl", "lwjgl-assimp", classifier = lwjglNatives) - runtimeOnly("org.lwjgl", "lwjgl-bgfx", classifier = lwjglNatives) runtimeOnly("org.lwjgl", "lwjgl-glfw", classifier = lwjglNatives) - runtimeOnly("org.lwjgl", "lwjgl-nanovg", classifier = lwjglNatives) - runtimeOnly("org.lwjgl", "lwjgl-nuklear", classifier = lwjglNatives) - runtimeOnly("org.lwjgl", "lwjgl-openal", classifier = lwjglNatives) runtimeOnly("org.lwjgl", "lwjgl-opengl", classifier = lwjglNatives) runtimeOnly("org.lwjgl", "lwjgl-opus", classifier = lwjglNatives) - runtimeOnly("org.lwjgl", "lwjgl-par", classifier = lwjglNatives) runtimeOnly("org.lwjgl", "lwjgl-stb", classifier = lwjglNatives) val ffiVersion: String by project @@ -87,10 +74,10 @@ dependencies { implementation("com.github.jnr:jnr-ffi:$ffiVersion") implementation("ru.dbotthepony.kommons:kommons:[$kommonsVersion,)") - implementation("ru.dbotthepony.kommons:gson:[$kommonsVersion,)") - implementation("ru.dbotthepony.kommons:guava:[$kommonsVersion,)") - implementation("ru.dbotthepony.kommons:linear-algebra:[$kommonsVersion,)") - implementation("ru.dbotthepony.kommons:gson-linear-algebra:[$kommonsVersion,)") + implementation("ru.dbotthepony.kommons:kommons-gson:[$kommonsVersion,)") + implementation("ru.dbotthepony.kommons:kommons-guava:[$kommonsVersion,)") + implementation("ru.dbotthepony.kommons:kommons-linear-algebra:[$kommonsVersion,)") + implementation("ru.dbotthepony.kommons:kommons-gson-linear-algebra:[$kommonsVersion,)") implementation("com.github.ben-manes.caffeine:caffeine:3.1.5") implementation("org.classdump.luna:luna-all-shaded:0.4.1")