File tree Expand file tree Collapse file tree 4 files changed +4
-7
lines changed
src/main/groovy/com/github/jrubygradle Expand file tree Collapse file tree 4 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -25,9 +25,6 @@ plugins:
25
25
26
26
This plugin requires Gradle 2.0 or better
27
27
28
- ` JRuby 1.7.14 ` seem to have some bugs. Although this plugin has a workaround for this version it is recommended that you
29
- avoid using ` 1.7.14 ` with the ` jruby-gradle-plugin ` .
30
-
31
28
## Getting Started
32
29
33
30
``` groovy
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ apply from: 'gradle/integration-tests.gradle'
14
14
15
15
16
16
group = ' com.github.jruby-gradle'
17
- version = ' 0.1.2 '
17
+ version = ' 0.1.3 '
18
18
19
19
if (System . env. RELEASE != ' 1' ) {
20
20
version = " ${ version} -SNAPSHOT"
Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ class JRubyPluginExtension {
20
20
String execVersion = defaultVersion
21
21
22
22
/* * Setting the warbler bootstrap version that can be used for dependencies
23
- * By default it will use any version 1.0 or better. Setting this property
23
+ * By default it will use any version 0.1.x or better. Setting this property
24
24
* allows for locking down the build to one specific version.
25
25
*
26
26
* @since 0.1.2
27
27
*/
28
28
@Incubating
29
- String warblerBootstrapVersion = ' 1.+'
29
+ String warblerBootstrapVersion = ' 0. 1.+'
30
30
31
31
/* * Set this to false if you do not want the default set of repositories to be loaded.
32
32
*
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import org.gradle.api.Project
9
9
*/
10
10
class WarblerBootstrap {
11
11
12
- static final String GROUP = ' com.lookout '
12
+ static final String GROUP = ' com.github.jruby-gradle '
13
13
static final String ARTIFACT = ' warbler-bootstrap'
14
14
15
15
/* * Adds the dependency to the Project using {@code jruby , warbkerBootstrapVersion} as the version
You can’t perform that action at this time.
0 commit comments