kopia lustrzana https://github.com/rt-bishop/Look4Sat
17 wiersze
436 B
Groovy
17 wiersze
436 B
Groovy
plugins {
|
|
id "kotlin"
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_test_version"
|
|
implementation "org.json:json:$json_version"
|
|
|
|
testImplementation "junit:junit:$junit_version"
|
|
testImplementation "org.mockito:mockito-core:$mockito_version"
|
|
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutines_test_version"
|
|
}
|