business_cases
core
gradle
mimes_generator
publishing
.gitignore
LICENSE
Posts DB.xmind
PostsSystemInteraction.deprecated.drawio
build.gradle
changelog_parser.sh
defaultAndroidSettings
extensions.gradle
github_release.gradle
gradle.properties
gradlew
gradlew.bat
mppAndroidProject
mppJavaProject
mppProjectWithSerialization
pubconf.kpsb
publish.gradle
settings.gradle
29 lines
566 B
Plaintext
29 lines
566 B
Plaintext
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')
|
|
}
|
|
}
|
|
}
|
|
}
|