搜索 Gradle 插件

版本 0.1.2(最新版)

0.1.2

创建于 2014 年 10 月 22 日。

由于该插件只使用在 JCenter 可找到的依赖项,因此当 JCenter 永久重定向到 Maven Central 后,此插件版本将不再解析。有关详情,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 此插件封装了 JRuby Gradle 项目中 Storm 拓扑构建功能

使用 插件 DSL

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

使用 旧插件应用

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

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

使用 插件 DSL

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

使用 旧插件应用

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

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

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