34 lines
697 B
Groovy
34 lines
697 B
Groovy
project.version = "$version"
|
|
project.group = "$group"
|
|
|
|
apply from: "$publishGradlePath"
|
|
|
|
kotlin {
|
|
jvm().compilations.main {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
targetCompatibility = "1.8"
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation kotlin('stdlib')
|
|
}
|
|
}
|
|
commonTest {
|
|
dependencies {
|
|
implementation kotlin('test-common')
|
|
implementation kotlin('test-annotations-common')
|
|
}
|
|
}
|
|
|
|
jvmTest {
|
|
dependencies {
|
|
implementation kotlin('test-junit')
|
|
}
|
|
}
|
|
}
|
|
}
|