mirror of
https://github.com/InsanusMokrassar/KotlinPublicationScriptsBuilder.git
synced 2024-11-13 03:43:57 +00:00
31 lines
666 B
Groovy
31 lines
666 B
Groovy
|
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')
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|