72 lines
1.9 KiB
Kotlin
Vendored
72 lines
1.9 KiB
Kotlin
Vendored
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
with(convention.plugins) {
|
|
alias(kotlinJvm11)
|
|
}
|
|
with(libs.plugins) {
|
|
alias(publisher)
|
|
alias(jupyter.api)
|
|
alias(binary.compatibility.validator)
|
|
}
|
|
}
|
|
|
|
group = "org.jetbrains.kotlinx"
|
|
|
|
repositories {
|
|
// geo repository should come before Maven Central
|
|
maven(url = "https://repo.osgeo.org/repository/release")
|
|
maven(url = "https://packages.jetbrains.team/maven/p/kds/kotlin-ds-maven")
|
|
mavenCentral()
|
|
mavenLocal()
|
|
}
|
|
|
|
fun ExternalModuleDependency.excludeDataFrame() = exclude("org.jetbrains.kotlinx", "dataframe")
|
|
|
|
dependencies {
|
|
api(projects.dataframe)
|
|
|
|
// logger, need it for apache poi
|
|
implementation(libs.log4j.core)
|
|
implementation(libs.log4j.api)
|
|
|
|
testImplementation(libs.junit)
|
|
testImplementation(libs.serialization.json)
|
|
|
|
// experimental
|
|
testImplementation(projects.dataframeOpenapiGenerator)
|
|
testImplementation(projects.dataframeOpenapi)
|
|
|
|
testImplementation(projects.dataframeJupyter)
|
|
testImplementation(projects.dataframeGeoJupyter)
|
|
|
|
testImplementation(libs.kandy) { excludeDataFrame() }
|
|
testImplementation(libs.kandy.geo) { excludeDataFrame() }
|
|
testImplementation(libs.kandy.stats) { excludeDataFrame() }
|
|
|
|
testImplementation(libs.kotestAssertions) {
|
|
exclude("org.jetbrains.kotlin", "kotlin-stdlib-jdk8")
|
|
}
|
|
}
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
friendPaths.from(project(projects.core.path).projectDir)
|
|
}
|
|
|
|
tasks.processJupyterApiResources {
|
|
libraryProducers = listOf("org.jetbrains.kotlinx.dataframe.jupyter.Integration")
|
|
}
|
|
|
|
tasks.test {
|
|
maxHeapSize = "2048m"
|
|
}
|
|
|
|
kotlinPublications {
|
|
publication {
|
|
publicationName = "dataframeJupyter"
|
|
artifactId = project.name
|
|
description = "Kotlin DataFrame integration with Kotlin Jupyter"
|
|
packageName = artifactId
|
|
}
|
|
}
|