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 1548

1548

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

See also:

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