com.github.jruby-gradle
Owner: R. Tyler Croy
Gradle plugin for building JRuby based Storm topologies
https://github.com/jruby-gradle/jruby-gradle-storm-plugin
Version 0.1.2 (latest)
0.1.2
Created 22 October 2014.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
This plugin encapsulates Storm topology building functionality for JRuby Gradle projects
Using the plugins DSL:
plugins {
id("com.github.jruby-gradle") version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.jruby-gradle:jruby-gradle-storm-plugin:0.1.2")
}
}
apply(plugin = "com.github.jruby-gradle")
Using the plugins DSL:
plugins {
id "com.github.jruby-gradle" version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.jruby-gradle:jruby-gradle-storm-plugin:0.1.2"
}
}
apply plugin: "com.github.jruby-gradle"