You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
407 B
24 lines
407 B
4 months ago
|
apply plugin: 'org.jetbrains.kotlin.multiplatform'
|
||
|
apply plugin: 'application'
|
||
|
|
||
|
mainClassName = System.getProperty("mainClass")
|
||
|
|
||
|
kotlin {
|
||
|
jvm {
|
||
|
withJava()
|
||
|
}
|
||
|
sourceSets {
|
||
|
commonMain {
|
||
|
dependencies {
|
||
|
implementation project(':okio')
|
||
|
}
|
||
|
}
|
||
|
jvmTest {
|
||
|
dependencies {
|
||
|
implementation deps.test.junit
|
||
|
implementation deps.test.assertj
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|