84 lines
2.4 KiB
Plaintext
Raw Normal View History

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.4.32"
}
allprojects {
2021-03-30 17:21:41 +04:30
group = "ir.armor.tachidesk"
version = "1.0"
repositories {
mavenCentral()
2021-03-30 17:21:41 +04:30
maven("https://maven.google.com/")
maven("https://jitpack.io")
maven("https://oss.sonatype.org/content/repositories/snapshots/")
maven("https://dl.bintray.com/inorichi/maven")
maven("https://dl.google.com/dl/android/maven2/")
}
}
2021-04-02 03:14:40 +04:30
val projects = listOf(
project(":AndroidCompat"),
project(":AndroidCompat:Config"),
project(":server")
)
2021-04-02 03:14:40 +04:30
configure(projects) {
apply(plugin = "org.jetbrains.kotlin.jvm")
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
}
}
dependencies {
// Kotlin
implementation(kotlin("stdlib"))
implementation(kotlin("reflect"))
testImplementation(kotlin("test"))
2021-04-02 03:14:40 +04:30
// coroutines
val coroutinesVersion = "1.4.3"
2021-04-02 03:14:40 +04:30
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$coroutinesVersion")
2021-04-03 16:42:13 -04:00
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutinesVersion")
2021-04-02 03:14:40 +04:30
// Dependency Injection
implementation("org.kodein.di:kodein-di-conf-jvm:7.5.0")
// Logging
implementation("org.slf4j:slf4j-api:1.7.30")
2021-03-27 18:30:36 +04:30
implementation("ch.qos.logback:logback-classic:1.2.3")
implementation("io.github.microutils:kotlin-logging:2.0.6")
// 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
implementation("com.typesafe:config:1.4.1")
2021-03-27 18:30:36 +04:30
implementation("io.github.config4k:config4k:0.4.2")
2021-03-11 14:43:29 +03:30
// to get application content root
implementation("net.harawata:appdirs:1.2.1")
2021-04-03 19:47:31 +04:30
// 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")
}
}