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 0.12.0-dev-2281

0.12.0-dev-2281

Created 08 August 2023.

The plugin was moved to 'org.jetbrains.kotlinx.dataframe'. 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.kotlin.plugin.dataframe") version "0.12.0-dev-2281"
}

See also:

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