25 lines
472 B
Kotlin
Vendored
25 lines
472 B
Kotlin
Vendored
plugins {
|
|
with(convention.plugins) {
|
|
alias(kotlinJvm8)
|
|
}
|
|
with(libs.plugins) {
|
|
alias(publisher)
|
|
alias(binary.compatibility.validator)
|
|
}
|
|
}
|
|
|
|
group = "org.jetbrains.kotlinx"
|
|
|
|
dependencies {
|
|
api(projects.core)
|
|
}
|
|
|
|
kotlinPublications {
|
|
publication {
|
|
publicationName = "dataframeOpenApi"
|
|
artifactId = project.name
|
|
description = "OpenAPI support for Kotlin DataFrame"
|
|
packageName = artifactId
|
|
}
|
|
}
|