37 lines
811 B
Groovy
37 lines
811 B
Groovy
plugins {
|
|
id 'kotlin'
|
|
id 'idea'
|
|
id 'com.google.devtools.ksp'
|
|
id 'org.jlleitschuh.gradle.ktlint'
|
|
id 'com.github.ben-manes.versions'
|
|
id 'com.adarshr.test-logger'
|
|
}
|
|
|
|
sourceSets.main {
|
|
// KSP - To use generated sources
|
|
java.srcDirs += 'build/generated/ksp/main/kotlin'
|
|
}
|
|
|
|
ktlint {
|
|
verbose = true
|
|
android = true
|
|
}
|
|
|
|
dependencies {
|
|
// KOTLIN
|
|
implementation kotlinStdlib
|
|
implementation kotlinxCoroutinesCore
|
|
// KOIN
|
|
implementation koinCore
|
|
implementation koinAnnotations
|
|
ksp koinCompiler
|
|
|
|
// TEST
|
|
testImplementation junit
|
|
testImplementation mockitoInline
|
|
testImplementation mockitoKotlin
|
|
testImplementation kotlinxCoroutinesTest
|
|
|
|
// DEPENDENCY CHECK STRATEGY
|
|
dependencyUpdates.resolutionStrategy dependencyUpdatesStrategy
|
|
} |