Search Gradle plugins

org.jetbrains.kotlinx.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 0.13.1-dev-2921

0.13.1-dev-2921

Created 13 March 2024.

Gradle plugin providing task for inferring data schemas from your CSV or JSON data

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.jetbrains.kotlinx.dataframe") version "0.13.1-dev-2921"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.jetbrains.kotlinx.dataframe:dataframe-gradle-plugin:0.13.1-dev-2921")
      }
    }
    
    apply(plugin = "org.jetbrains.kotlinx.dataframe")
  • Applying plugins to all subprojects .