Search Gradle plugins

org.jetbrains.kotlin.plugin.dataframe

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 1727 (latest)

Created 08 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 "1727"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.jetbrains.kotlinx.dataframe:dataframe-gradle-plugin:1727")
  }
}

apply(plugin = "org.jetbrains.kotlin.plugin.dataframe")

Using the plugins DSL:

plugins {
  id "org.jetbrains.kotlin.plugin.dataframe" version "1727"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.jetbrains.kotlinx.dataframe:dataframe-gradle-plugin:1727"
  }
}

apply plugin: "org.jetbrains.kotlin.plugin.dataframe"

Learn how to apply plugins to subprojects