core/mppJavaProject.gradle

36 lines
707 B
Groovy
Raw Permalink Normal View History

2021-11-24 07:52:27 +00:00
project.version = "$version"
2020-11-25 12:40:45 +00:00
project.group = "$group"
2021-11-27 19:11:04 +00:00
apply from: "$publishGradlePath"
2020-11-25 12:40:45 +00:00
kotlin {
2021-12-05 13:00:38 +00:00
jvm()
2020-11-25 12:40:45 +00:00
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
}
}
jvmTest {
dependencies {
implementation kotlin('test-junit')
}
}
}
allTargetsConfiguration()
2020-11-25 12:40:45 +00:00
}
2021-11-27 19:11:04 +00:00
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}