rewrite on multiplatform

This commit is contained in:
2021-03-01 20:17:06 +06:00
parent 376691ef74
commit f1595bb5ed
36 changed files with 347 additions and 108 deletions

30
mppJavaProject.gradle Normal file
View File

@@ -0,0 +1,30 @@
project.version = "$version" + System.getenv("additional_version")
project.group = "$group"
// apply from: "$publishGradlePath"
kotlin {
jvm {
compilations.main.kotlinOptions.useIR = true
}
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
}
}
jvmTest {
dependencies {
implementation kotlin('test-junit')
}
}
}
}