forked from melod1n/fast-messenger
15 lines
369 B
Kotlin
15 lines
369 B
Kotlin
import dev.meloda.fast.configureKotlinJvm
|
|
import org.gradle.api.Plugin
|
|
import org.gradle.api.Project
|
|
|
|
class JvmLibraryConventionPlugin : Plugin<Project> {
|
|
override fun apply(target: Project) {
|
|
with(target) {
|
|
with(pluginManager) {
|
|
apply("org.jetbrains.kotlin.jvm")
|
|
}
|
|
configureKotlinJvm()
|
|
}
|
|
}
|
|
}
|