搜索 Gradle 插件

版本 0.4.4 (最新)

0.4.4

创建于 2015年10月2日。

此插件版本将在 JCenter 成为 Maven Central 的永久重定向后不再解析,因为它只使用在 JCenter 才能找到的依赖。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact

使用 plugins DSL

plugins {
  id("com.github.jruby-gradle.storm") version "0.4.4"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.jruby-gradle:jruby-gradle-storm-plugin:0.4.4")
  }
}

apply(plugin = "com.github.jruby-gradle.storm")

使用 plugins DSL

plugins {
  id "com.github.jruby-gradle.storm" version "0.4.4"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.jruby-gradle:jruby-gradle-storm-plugin:0.4.4"
  }
}

apply plugin: "com.github.jruby-gradle.storm"

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