diff options
| author | ilotterytea <iltsu@alright.party> | 2024-11-10 20:45:32 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-11-10 20:45:32 +0500 |
| commit | 0a29485586012ae00548997c262ea16f3820a823 (patch) | |
| tree | c1abed64ee34a53e8e119219a6278a03733b0754 /build.gradle | |
| parent | c5493df746e8f3915d86d8ebe85346dc1690ee4f (diff) | |
upd: kotlin has been a disaster for maxon source code
Diffstat (limited to 'build.gradle')
| -rw-r--r-- | build.gradle | 9 |
1 files changed, 2 insertions, 7 deletions
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" } |
