20 lines
496 B
Kotlin
20 lines
496 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
kotlin("plugin.serialization")
|
|
`flatten-source-sets`
|
|
idea
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.datasource.datasourceApi)
|
|
implementation(projects.utils.ktorClient)
|
|
implementation(projects.datasource.dmhy)
|
|
implementation(libs.ktor.client.okhttp)
|
|
implementation(libs.slf4j.simple)
|
|
implementation(libs.jsoup)
|
|
implementation(libs.kotlinpoet)
|
|
}
|
|
|
|
idea {
|
|
module.excludeDirs.add(file("testData")) // avoid indexing large files
|
|
} |