Skip to content

Commit 353e78d

Browse files
author
R. Tyler Croy
committed
Switch over to the jruby-gradle project's version of the warbler-bootstrap
1 parent e5c6af5 commit 353e78d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
}
1111

1212
group = 'com.github.jruby-gradle'
13-
version = '0.1.2'
13+
version = '0.1.3'
1414

1515
if (System.env.RELEASE != '1') {
1616
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)