Skip to content

Commit 4ad79fb

Browse files
committed
2 parents e78abe3 + 353e78d commit 4ad79fb

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ plugins:
2525

2626
This plugin requires Gradle 2.0 or better
2727

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-
3128
## Getting Started
3229

3330
```groovy

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ apply from: 'gradle/integration-tests.gradle'
1414

1515

1616
group = 'com.github.jruby-gradle'
17-
version = '0.1.2'
17+
version = '0.1.3'
1818

1919
if (System.env.RELEASE != '1') {
2020
version = "${version}-SNAPSHOT"

src/main/groovy/com/github/jrubygradle/JRubyPluginExtension.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ class JRubyPluginExtension {
2020
String execVersion = defaultVersion
2121

2222
/** 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
2424
* allows for locking down the build to one specific version.
2525
*
2626
* @since 0.1.2
2727
*/
2828
@Incubating
29-
String warblerBootstrapVersion = '1.+'
29+
String warblerBootstrapVersion = '0.1.+'
3030

3131
/** Set this to false if you do not want the default set of repositories to be loaded.
3232
*

src/main/groovy/com/github/jrubygradle/internal/WarblerBootstrap.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import org.gradle.api.Project
99
*/
1010
class WarblerBootstrap {
1111

12-
static final String GROUP = 'com.lookout'
12+
static final String GROUP = 'com.github.jruby-gradle'
1313
static final String ARTIFACT = 'warbler-bootstrap'
1414

1515
/** Adds the dependency to the Project using {@code jruby , warbkerBootstrapVersion} as the version

0 commit comments

Comments
 (0)