nl.surfsara.jupyter
Owner: Laura Leistikow
Jupyter plugin
https://git.ia.surfsara.nl/sda/jupyter/instances/gradle-plugin.git
Sources: https://github.com/ysb33r/gradleTest.git
Using the plugins DSL:
plugins {
id("nl.surfsara.jupyter") version "3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.nl.surfsara.jupyter:gradle-plugin:3.0")
}
}
apply(plugin = "nl.surfsara.jupyter")
Using the plugins DSL:
plugins {
id "nl.surfsara.jupyter" version "3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.nl.surfsara.jupyter:gradle-plugin:3.0"
}
}
apply plugin: "nl.surfsara.jupyter"