File tree Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change
1
+ buildscript {
2
+ repositories { jcenter() }
3
+ dependencies {
4
+ classpath ' com.jfrog.bintray.gradle:gradle-bintray-plugin:0.5'
5
+ classpath ' com.netflix.nebula:gradle-extra-configurations-plugin:1.12.+'
6
+ }
7
+ }
8
+
1
9
apply plugin : ' groovy'
2
10
apply plugin : ' maven'
3
11
apply plugin : ' com.jfrog.bintray'
12
+ apply plugin : ' provided-base'
4
13
apply from : ' gradle/integration-tests.gradle'
5
14
6
- // Pull in the bintray gradle plugin for uploading releases
7
- buildscript {
8
- repositories { jcenter() }
9
- dependencies { classpath ' com.jfrog.bintray.gradle:gradle-bintray-plugin:0.5' }
10
- }
11
15
12
16
group = ' com.github.jruby-gradle'
13
17
version = ' 0.1.2'
@@ -23,6 +27,7 @@ configurations {
23
27
}
24
28
25
29
ext {
30
+ jrubyVersion = ' 1.7.15'
26
31
jrubyClassPathFromConfiguration = { Configuration cfg ->
27
32
def f = cfg. files. find { it. name. startsWith(' jruby-complete-' ) }
28
33
return f?. absolutePath
@@ -39,7 +44,7 @@ project.afterEvaluate {
39
44
// --- up to here
40
45
41
46
dependencies {
42
- testJRubyPrepare ' org.jruby:jruby-complete:1.7.15 '
47
+ testJRubyPrepare " org.jruby:jruby-complete:${ jrubyVersion } "
43
48
}
44
49
45
50
@@ -64,6 +69,8 @@ dependencies {
64
69
integrationTestCompile (spockVersion) {
65
70
exclude module : ' groovy-all'
66
71
}
72
+
73
+ provided " org.jruby:jruby-complete:${ jrubyVersion} "
67
74
}
68
75
69
76
test {
You can’t perform that action at this time.
0 commit comments