Go to file
R. Tyler Croy 5baf5ff1ff
Update the README to contain some slightly more updated info
2015-10-08 16:01:25 -07:00
buildSrc Introduce some GradleTestKit-based tests and the supporting infra to run them 2015-08-14 11:24:32 -07:00
examples/word-count Upgrade the dependency on JRuby/Gradle base and jar plugins to generate .jrubydir properly 2015-10-01 16:49:56 -07:00
gradle Upgrade the gradle wrapper 2015-09-21 14:48:01 -07:00
src Merge pull request #33 from rtyler/five-zero-fixes 2015-09-21 16:31:44 -07:00
.gitignore Mark the storm extension as incubating for now 2015-08-16 12:44:55 -07:00
.travis.yml Remove oraclejdk7 from travis 2015-09-10 17:01:27 -07:00
LICENSE Properly copyright this work 2014-09-16 15:17:41 -07:00
README.adoc Update the README to contain some slightly more updated info 2015-10-08 16:01:25 -07:00
build.gradle Remove install -> check dependency which causes duplicate tests for bintrayUpload 2015-10-01 17:20:00 -07:00
gradle.properties Upgrade the dependency on JRuby/Gradle base and jar plugins to generate .jrubydir properly 2015-10-01 16:49:56 -07:00
gradlew Upgrade the gradle wrapper 2015-09-21 14:48:01 -07:00
gradlew.bat Add gradle wrappers 2014-09-16 15:18:19 -07:00

README.adoc

<html lang="en"> <head> </head>

JRuby/Gradle Storm Plugin

Build Status

download

JRuby/Gradle plugin to manage creating Storm topology jars

Usage

Including the plugin:

buildscript {
    repositories { jcenter() }
    dependencies {
        classpath "com.github.jruby-gradle:jruby-gradle-storm-plugin:[0.4.4,0.5)"
    }
}

Creating a topolog .jar

Creating a topology .jar file is useflu when you plan on uploading your topology to a running Storm cluster. Currently this plugin will only create that jar for you, it will not upload it.

  • ./gradlew jrubyStorm will create a .jar in build/libs/

</html>