From 0a29485586012ae00548997c262ea16f3820a823 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sun, 10 Nov 2024 20:45:32 +0500 Subject: upd: kotlin has been a disaster for maxon source code --- build.gradle | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index 55efb59..f4e6069 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,6 @@ buildscript { } dependencies { classpath "com.android.tools.build:gradle:$gradleVersion" - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinGradlePluginVersion" } } @@ -42,7 +41,7 @@ allprojects { } project(":desktop") { - apply plugin: "kotlin" + apply plugin: "java-library" dependencies { implementation project(":core") @@ -53,7 +52,6 @@ project(":desktop") { project(":android") { apply plugin: "android" - apply plugin: "kotlin-android" configurations { natives } @@ -64,13 +62,12 @@ project(":android") { natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-arm64-v8a" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64" - api "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion" implementation "androidx.core:core:$androidXVersion" } } project(":core") { - apply plugin: "kotlin" + apply plugin: "java-library" dependencies { api "com.badlogicgames.gdx:gdx:$gdxVersion" @@ -78,8 +75,6 @@ project(":core") { api "com.github.mgsx-dev.gdx-gltf:gltf:$gltfVersion" implementation "com.google.code.gson:gson:$gsonVersion" implementation "ch.qos.logback:logback-classic:$logbackVersion" - implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion" - implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion" implementation "com.github.JnCrMx:discord-game-sdk4j:$discordSdkVersion" } -- cgit v1.2.3