mirror of
https://github.com/Shabinder/SpotiFlyer.git
synced 2024-11-22 17:14:32 +01:00
60 lines
1.4 KiB
Plaintext
60 lines
1.4 KiB
Plaintext
plugins {
|
|
kotlin("jvm")// version "1.4.32"
|
|
kotlin("plugin.serialization")
|
|
id("ktlint-setup")
|
|
id("com.jakewharton.mosaic")
|
|
application
|
|
}
|
|
|
|
group = "com.shabinder"
|
|
version = Versions.versionCode
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
application {
|
|
mainClass.set("MainKt")
|
|
applicationName = "spotiflyer-console-app"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(Koin.core)
|
|
implementation(project(":common:database"))
|
|
implementation(project(":common:data-models"))
|
|
implementation(project(":common:dependency-injection"))
|
|
implementation(project(":common:root"))
|
|
implementation(project(":common:main"))
|
|
implementation(project(":common:list"))
|
|
implementation(project(":common:list"))
|
|
|
|
|
|
// Decompose
|
|
implementation(Decompose.decompose)
|
|
implementation(Decompose.extensionsCompose)
|
|
|
|
// MVI
|
|
implementation(MVIKotlin.mvikotlin)
|
|
implementation(MVIKotlin.mvikotlinMain)
|
|
|
|
// Koin
|
|
implementation(Koin.core)
|
|
|
|
// Matomo
|
|
implementation("org.piwik.java.tracking:matomo-java-tracker:1.6")
|
|
|
|
implementation(Ktor.slf4j)
|
|
implementation(Ktor.clientCore)
|
|
implementation(Ktor.clientJson)
|
|
implementation(Ktor.clientApache)
|
|
implementation(Ktor.clientLogging)
|
|
implementation(Ktor.clientSerialization)
|
|
implementation(Serialization.json)
|
|
// testDeps
|
|
testImplementation(kotlin("test-junit"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnit()
|
|
}
|