update scripts

This commit is contained in:
2020-11-25 18:40:45 +06:00
parent 83e0513dba
commit f7d60fa672
53 changed files with 482 additions and 648 deletions

28
mppJavaProject Normal file
View File

@@ -0,0 +1,28 @@
project.version = "$version"
project.group = "$group"
apply from: "$publishGradlePath"
kotlin {
jvm()
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
}
}
jvmTest {
dependencies {
implementation kotlin('test-junit')
}
}
}
}