core/mppJavaProject

29 lines
604 B
Plaintext
Raw Normal View History

2021-02-27 14:47:48 +00:00
project.version = "$version" + System.getenv("additional_version")
2020-11-25 12:40:45 +00:00
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')
}
}
}
}