2021-05-03 19:49:09 +02:00
|
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
2021-01-02 02:27:20 +01:00
|
|
|
|
|
|
|
plugins {
|
2021-05-03 19:49:09 +02:00
|
|
|
kotlin("jvm") version "1.4.32"
|
2021-01-02 02:27:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
2021-03-30 14:51:41 +02:00
|
|
|
group = "ir.armor.tachidesk"
|
2021-01-02 02:27:20 +01:00
|
|
|
|
|
|
|
version = "1.0"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2021-03-30 14:51:41 +02:00
|
|
|
maven("https://maven.google.com/")
|
2021-01-02 02:27:20 +01:00
|
|
|
maven("https://jitpack.io")
|
|
|
|
maven("https://oss.sonatype.org/content/repositories/snapshots/")
|
|
|
|
maven("https://dl.google.com/dl/android/maven2/")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-02 00:44:40 +02:00
|
|
|
val projects = listOf(
|
2021-01-02 02:27:20 +01:00
|
|
|
project(":AndroidCompat"),
|
|
|
|
project(":AndroidCompat:Config"),
|
|
|
|
project(":server")
|
|
|
|
)
|
|
|
|
|
2021-04-02 00:44:40 +02:00
|
|
|
configure(projects) {
|
2021-01-02 02:27:20 +01:00
|
|
|
apply(plugin = "org.jetbrains.kotlin.jvm")
|
|
|
|
|
|
|
|
java {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
|
2021-05-03 19:49:09 +02:00
|
|
|
tasks.withType<KotlinCompile> {
|
2021-01-02 02:27:20 +01:00
|
|
|
kotlinOptions {
|
2021-05-03 19:49:09 +02:00
|
|
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
2021-01-02 02:27:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
// Kotlin
|
2021-05-06 11:44:04 +02:00
|
|
|
implementation(kotlin("stdlib-jdk8"))
|
2021-05-03 19:49:09 +02:00
|
|
|
implementation(kotlin("reflect"))
|
|
|
|
testImplementation(kotlin("test"))
|
2021-01-02 02:27:20 +01:00
|
|
|
|
2021-04-02 00:44:40 +02:00
|
|
|
// coroutines
|
2021-05-03 19:49:09 +02:00
|
|
|
val coroutinesVersion = "1.4.3"
|
2021-04-02 00:44:40 +02:00
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$coroutinesVersion")
|
2021-04-03 22:42:13 +02:00
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutinesVersion")
|
2021-04-02 00:44:40 +02:00
|
|
|
|
2021-01-02 02:27:20 +01:00
|
|
|
|
|
|
|
// Dependency Injection
|
2021-05-03 19:49:09 +02:00
|
|
|
implementation("org.kodein.di:kodein-di-conf-jvm:7.5.0")
|
2021-01-02 02:27:20 +01:00
|
|
|
|
|
|
|
// Logging
|
|
|
|
implementation("org.slf4j:slf4j-api:1.7.30")
|
2021-03-27 15:00:36 +01:00
|
|
|
implementation("ch.qos.logback:logback-classic:1.2.3")
|
2021-05-03 19:49:09 +02:00
|
|
|
implementation("io.github.microutils:kotlin-logging:2.0.6")
|
2021-01-02 02:27:20 +01:00
|
|
|
|
|
|
|
// RxJava
|
|
|
|
implementation("io.reactivex:rxjava:1.3.8")
|
|
|
|
implementation("io.reactivex:rxkotlin:1.0.0")
|
|
|
|
|
|
|
|
// JSoup
|
|
|
|
implementation("org.jsoup:jsoup:1.13.1")
|
|
|
|
|
|
|
|
|
|
|
|
// dependency of :AndroidCompat:Config
|
2021-05-03 19:49:09 +02:00
|
|
|
implementation("com.typesafe:config:1.4.1")
|
2021-03-27 15:00:36 +01:00
|
|
|
implementation("io.github.config4k:config4k:0.4.2")
|
|
|
|
|
2021-03-11 12:13:29 +01:00
|
|
|
// to get application content root
|
2021-05-03 19:49:09 +02:00
|
|
|
implementation("net.harawata:appdirs:1.2.1")
|
2021-04-03 17:17:31 +02:00
|
|
|
|
|
|
|
// dex2jar: https://github.com/DexPatcher/dex2jar/releases/tag/v2.1-20190905-lanchon
|
|
|
|
implementation("com.github.DexPatcher.dex2jar:dex-tools:v2.1-20190905-lanchon")
|
|
|
|
|
|
|
|
// APK parser
|
|
|
|
implementation("net.dongliu:apk-parser:2.6.10")
|
2021-01-02 02:27:20 +01:00
|
|
|
}
|
|
|
|
}
|