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
.gitignorebuild.gradle
business_cases/post_creating
client
common
server
build.gradle
src
jvmMain
kotlin
dev
inmo
postssystem
business_cases
post_creating
changelog_parser.sh
core
defaultAndroidSettingsextensions.gradlegithub_release.gradlegradle.propertiesmppAndroidProjectmppJavaProjectmppProjectWithSerializationpubconf.kpsbpublish.gradle
publishing
settings.gradle

28
mppJavaProject Normal 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')
}
}
}
}