DEADSOFTWARE

Add my repo for automultibind
[cavedroid.git] / build.gradle
index 10228bd66a6bed664013db7868a828f298737fec..60a1bb36473273a246bf966c6b5d46c0122dd6e7 100644 (file)
@@ -1,4 +1,19 @@
 buildscript {
+    ext {
+        appName = "CaveDroid"
+
+        gdxVersion = '1.12.0'
+
+        guavaVersion = '28.1'
+
+        daggerVersion = '2.51.1'
+
+        kotlinVersion = '1.9.24'
+        kspVersion = '1.9.24-1.0.20'
+        kotlinSerializationVersion = '1.6.3'
+
+        kotlinpoetKspVersion = '1.16.0'
+    }
 
     repositories {
         mavenLocal()
@@ -10,19 +25,12 @@ buildscript {
 
     dependencies {
         classpath 'com.android.tools.build:gradle:8.2.2'
-        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.23"
+        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
     }
 }
 
 allprojects {
-
-    version = 'alpha0.5.2'
-    ext {
-        appName = "CaveDroid"
-        gdxVersion = '1.12.0'
-        guavaVersion = '28.1'
-        daggerVersion = '2.51.1'
-    }
+    version = 'alpha0.9.2'
 
     repositories {
         mavenLocal()
@@ -31,48 +39,6 @@ allprojects {
         maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
         maven { url "https://oss.sonatype.org/content/repositories/releases/" }
         maven { url "https://jitpack.io" }
+        maven { url "https://mvn.fredboy.ru/releases/" }
     }
 }
-
-project(":desktop") {
-    apply plugin: "java-library"
-
-    dependencies {
-        implementation project(":core")
-        api "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"
-        api "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
-    }
-}
-
-project(":android") {
-    apply plugin: "android"
-
-    configurations { natives }
-
-    dependencies {
-        implementation project(":core")
-        implementation platform("org.jetbrains.kotlin:kotlin-bom:1.9.23")
-        api "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
-        natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a"
-        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"
-
-        configurations.implementation {
-            exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk8'
-        }
-    }
-}
-
-project(":core") {
-    apply plugin: "java-library"
-
-    dependencies {
-        api "com.badlogicgames.gdx:gdx:$gdxVersion"
-        api "com.google.guava:guava:$guavaVersion-android"
-        api "com.google.dagger:dagger:$daggerVersion"
-        implementation 'org.jetbrains:annotations:23.1.0'
-        implementation "org.jetbrains.kotlin:kotlin-stdlib:1.9.23"
-        annotationProcessor "com.google.dagger:dagger-compiler:$daggerVersion"
-    }
-}
\ No newline at end of file