搜索 Gradle 插件

版本 9.0.0(最新版本)

9.0.0

创建于 2022 年 10 月 10 日。

Gradle 插件,用于执行各种 Stash SCM 任务

使用 插件 DSL

plugins {
  id("com.netflix.nebula.gradle-stash") version "9.0.0"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.netflix.nebula:gradle-stash-plugin:9.0.0")
  }
}

apply(plugin = "com.netflix.nebula.gradle-stash")

使用 插件 DSL

plugins {
  id "com.netflix.nebula.gradle-stash" version "9.0.0"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.netflix.nebula:gradle-stash-plugin:9.0.0"
  }
}

apply plugin: "com.netflix.nebula.gradle-stash"

了解如何将插件应用到子项目中