MicroUtils/repos/exposed/build.gradle

17 lines
319 B
Groovy
Raw Normal View History

2020-09-22 01:47:01 +00:00
plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
}
apply from: "$mppJavaProjectPresetPath"
kotlin {
sourceSets {
commonMain {
dependencies {
api internalProject("micro_utils.repos.common")
}
}
}
}