搜索 Gradle 插件

版本 3.0(最新版本)

3.0

创建于 2018 年 7 月 5 日。

此插件用于 Jupyter CI/CD

使用 插件 DSL

plugins {
  id("nl.surfsara.jupyter") version "3.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.nl.surfsara.jupyter:gradle-plugin:3.0")
  }
}

apply(plugin = "nl.surfsara.jupyter")

使用 插件 DSL

plugins {
  id "nl.surfsara.jupyter" version "3.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.nl.surfsara.jupyter:gradle-plugin:3.0"
  }
}

apply plugin: "nl.surfsara.jupyter"

学习如何将插件应用到子项目中