X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=core%2Fbuild.gradle;h=3b061a7b46e305818b0cc302409847fc593d016a;hb=947f14cbeb9db09ca1ed5e80f6a66ebba193e855;hp=cdf2ee7e4708ffec3ab49447cc63298a1f77caab;hpb=63ffd8af5e9788f36fc75b6d5c29ae525eb74692;p=cavedroid.git diff --git a/core/build.gradle b/core/build.gradle index cdf2ee7..3b061a7 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -1,12 +1,26 @@ plugins { + id "java-library" id "org.jetbrains.kotlin.jvm" id "kotlin" id "idea" id 'org.jetbrains.kotlin.plugin.serialization' version "$kotlinVersion" + id 'com.google.devtools.ksp' version "$kspVersion" } -sourceCompatibility = 17 +java.targetCompatibility = JavaVersion.VERSION_17 +java.sourceCompatibility = JavaVersion.VERSION_17 -sourceSets.main.java.srcDirs = [ "src/" ] +sourceSets.main.java.srcDirs = ["src/"] -java.targetCompatibility = JavaVersion.VERSION_17 \ No newline at end of file +dependencies { + implementation "ru.fredboy:automultibind-annotations:1.0.0" + ksp "ru.fredboy:automultibind-ksp:1.0.0" + + 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:$kotlinVersion" + implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlinSerializationVersion" + ksp "com.google.dagger:dagger-compiler:$daggerVersion" +} \ No newline at end of file