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

1727

Created 08 June 2023.

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

See also:

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