16 lines
221 B
Kotlin
16 lines
221 B
Kotlin
plugins {
|
|
kotlin(Kotlin.JvmPluginId)
|
|
id(MavenPublish.PluginId)
|
|
}
|
|
|
|
kotlin {
|
|
explicitApi()
|
|
}
|
|
|
|
dependencies {
|
|
api(Kotlin.DateTime)
|
|
|
|
testImplementation(Kotest.Assertions)
|
|
testImplementation(Kotest.RunnerJunit5)
|
|
}
|