jruby-gradle-storm-plugin/src/main/groovy/com/github/jrubygradle/storm/JRubyStormExtension.groovy

24 lines
585 B
Groovy

package com.github.jrubygradle.storm
/**
*
*/
class JRubyStormExtension {
/** Default version of Storm supported and included */
String defaultVersion = '0.9.2-incubating'
/** Default version of redstorm to use */
String defaultRedstormVersion = '0.7.1'
/** Set the Storm dependency version */
void defaultVersion(Object stormVersion) {
this.defaultVersion = stormVersion
}
/** Set the version of the Redstorm library to use */
void defaultRedstormVersion(Object newVersion) {
this.defaultRedstormVersion = newVersion
}
}