From dec7a746291f5b32ad270f031a8918794b83104a Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Sun, 16 Aug 2015 12:42:10 -0700 Subject: [PATCH] Mark the storm extension as incubating for now Given the troubles with jruby.defaultVersion in the code plugins, I'm not sure this is a great pattern --- .gitignore | 2 +- .../com/github/jrubygradle/storm/JRubyStormExtension.groovy | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index be16a31..c41f4ca 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,8 @@ .gradle build/ +.idea/ # Ignore Gradle GUI config gradle-app.setting *.sw* -.idea/ *.iml diff --git a/src/main/groovy/com/github/jrubygradle/storm/JRubyStormExtension.groovy b/src/main/groovy/com/github/jrubygradle/storm/JRubyStormExtension.groovy index 440a05c..428c3c4 100644 --- a/src/main/groovy/com/github/jrubygradle/storm/JRubyStormExtension.groovy +++ b/src/main/groovy/com/github/jrubygradle/storm/JRubyStormExtension.groovy @@ -1,13 +1,16 @@ package com.github.jrubygradle.storm +import org.gradle.api.Incubating /** - * + * Extension to provide the `project.storm` DSL into a Gradle project */ class JRubyStormExtension { + @Incubating /** Default version of Storm supported and included */ String defaultVersion = '0.9.2-incubating' + @Incubating /** Default version of redstorm to use */ String defaultRedstormVersion = '0.7.2'