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
Version 0.8.1
Created 22 July 2022.
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.8.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.jetbrains.kotlinx.dataframe:dataframe-gradle-plugin:0.8.1")
}
}
apply(plugin = "org.jetbrains.kotlin.plugin.dataframe")
Using the plugins DSL:
plugins {
id "org.jetbrains.kotlin.plugin.dataframe" version "0.8.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jetbrains.kotlinx.dataframe:dataframe-gradle-plugin:0.8.1"
}
}
apply plugin: "org.jetbrains.kotlin.plugin.dataframe"