rename template files

This commit is contained in:
2021-04-20 18:36:53 +06:00
parent a2b87e63c9
commit a5ae5e6c2b
5 changed files with 4 additions and 4 deletions

30
mppJavaProject.gradle Normal file
View File

@@ -0,0 +1,30 @@
project.version = "$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')
}
}
}
}