Privacy-Period-Tracker/domain/cycle/build.gradle.kts

16 lines
407 B
Plaintext

plugins {
alias(libs.plugins.kotlin.jvm)
}
// Deliberately kotlin("jvm") and not an Android library. The prediction domain
// must be testable without an emulator, and a module that CANNOT see the
// Android SDK is a compile error rather than a convention somebody breaks at
// 11pm. See docs/architecture/README.md.
kotlin {
jvmToolchain(21)
}
dependencies {
testImplementation(libs.junit)
}