Skip to content

Commit d3f21d0

Browse files
committed
Fixes #57, #58. Forces jar name. Upgrade to JRuby 1.7.16
1 parent 9611a90 commit d3f21d0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ apply from: 'gradle/integration-tests.gradle'
1515

1616
group = 'com.github.jruby-gradle'
1717
version = '0.1.3'
18+
archivesBaseName = 'jruby-gradle-plugin'
1819

1920
if (System.env.RELEASE != '1') {
2021
version = "${version}-SNAPSHOT"
@@ -27,7 +28,7 @@ configurations {
2728
}
2829

2930
ext {
30-
jrubyVersion = '1.7.15'
31+
jrubyVersion = '1.7.16'
3132
jrubyClassPathFromConfiguration = { Configuration cfg ->
3233
def f = cfg.files.find { it.name.startsWith('jruby-complete-') }
3334
return f?.absolutePath
@@ -37,7 +38,6 @@ ext {
3738
project.afterEvaluate {
3839
test {
3940
systemProperties TEST_JRUBY_CLASSPATH: "${jrubyClassPathFromConfiguration(configurations.testJRubyPrepare)}"
40-
4141
}
4242
}
4343

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class JRubyPluginExtension {
77
/** The default version of jruby that will be used by jrubyWar
88
*
99
*/
10-
String defaultVersion = '1.7.15'
10+
String defaultVersion = '1.7.16'
1111

1212
/** Directory for jrubyPrepare to install .gem dependencies into
1313
*

0 commit comments

Comments
 (0)