搜索Gradle插件

版本 0.3(最新版)

0.3

创建于2016年12月16日。

由于它只使用JCenter中可找到的依赖项,因此该插件版本将在JCenter永久重定向到Maven Central后不再解决。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact。一个在Unix和Windows平台上的shell脚本执行插件。

使用插件DSL

plugins {
  id("com.github.jishida.shellscript") version "0.3"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.jishida.gradle:gradle-shell-script-plugin:0.3")
  }
}

apply(plugin = "com.github.jishida.shellscript")

使用插件DSL

plugins {
  id "com.github.jishida.shellscript" version "0.3"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.jishida.gradle:gradle-shell-script-plugin:0.3"
  }
}

apply plugin: "com.github.jishida.shellscript"

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