Search Gradle plugins

org.jetbrains.kotlin.jupyter.api

Gradle plugin providing a smooth Jupyter notebooks integration for Kotlin libraries

https://github.com/Kotlin/kotlin-jupyter

Sources: https://github.com/Kotlin/kotlin-jupyter

Version 0.12.0-345

Created 05 December 2024.

Gradle plugin providing a smooth Jupyter notebooks integration for Kotlin libraries

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.jetbrains.kotlin.jupyter.api") version "0.12.0-345"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("org.jetbrains.kotlin.jupyter.api:org.jetbrains.kotlin.jupyter.api.gradle.plugin:0.12.0-345")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.jetbrains.kotlin.jupyter.api")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.jetbrains.kotlin.jupyter.api:org.jetbrains.kotlin.jupyter.api.gradle.plugin:0.12.0-345")
      }
    }
    
    apply(plugin = "org.jetbrains.kotlin.jupyter.api")
  • Applying plugins to all subprojects .