org.jetbrains.kotlin.plugin.dataframe
Owner: Kotlin Team
Gradle plugin providing task for inferring data schemas from your CSV or JSON data
https://github.com/Kotlin/dataframe
Sources: https://github.com/Kotlin/dataframe
Version 0.11.0
0.11.0
Created 23 June 2023.
The plugin was moved to 'org.jetbrains.kotlinx.dataframe'. Gradle plugin providing task for inferring data schemas from your CSV or JSON data
Using the plugins DSL:
plugins {
id("org.jetbrains.kotlin.plugin.dataframe") version "0.11.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.jetbrains.kotlinx.dataframe:dataframe-gradle-plugin:0.11.0")
}
}
apply(plugin = "org.jetbrains.kotlin.plugin.dataframe")
Using the plugins DSL:
plugins {
id "org.jetbrains.kotlin.plugin.dataframe" version "0.11.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jetbrains.kotlinx.dataframe:dataframe-gradle-plugin:0.11.0"
}
}
apply plugin: "org.jetbrains.kotlin.plugin.dataframe"