@@ -85,22 +85,18 @@ dependencies {
85
85
}
86
86
87
87
test {
88
- systemProperties TESTROOT : new File (buildDir,' tmp/test/unittests' ). absolutePath
89
- systemProperties TEST_GEM_DIR : new File (projectDir,' src/integTest/resources/gems' ). absolutePath
90
- systemProperties ' logback.configurationFile' : new File (projectDir,' src/test/resources/logback-test.xml' ). absolutePath
91
-
92
88
if (gradle. startParameter. isOffline()) {
93
89
systemProperties ' TESTS_ARE_OFFLINE' : ' 1'
94
90
}
95
91
}
96
92
97
93
generateTestConfig {
98
94
testProperties mavenrepo : file(' src/integTest/mavenrepo' ). absolutePath,
99
- flatrepo : flatRepoDir. absolutePath,
100
- bcprovVersion : bcprovVersion,
101
- olderJRubyVersion : olderJRubyVersion,
102
- slimVersion : slimVersion,
103
- leafyVersion : leafyVersion
95
+ flatrepo : flatRepoDir. absolutePath,
96
+ bcprovVersion : bcprovVersion,
97
+ olderJRubyVersion : olderJRubyVersion,
98
+ slimVersion : slimVersion,
99
+ leafyVersion : leafyVersion
104
100
}
105
101
106
102
task copyIntegrationTestJRuby (type :Copy ) {
@@ -109,21 +105,12 @@ task copyIntegrationTestJRuby (type:Copy) {
109
105
}
110
106
111
107
integrationTest {
112
- systemProperties TESTROOT : new File (buildDir,' tmp/integrationTest/root' ). absolutePath
113
- systemProperties CACHEDIR : new File (buildDir,' tmp/integrationTest/cache' ). absolutePath
114
- systemProperties FLATREPO : new File (buildDir,' tmp/integrationTest/flatRepo' ). absolutePath
115
- systemProperties TEST_SCRIPT_DIR : new File (projectDir,' src/integTest/resources/scripts' ). absolutePath
116
- systemProperties ' logback.configurationFile' : new File (projectDir,' src/integTest/resources/logback-test.xml' ). absolutePath
117
-
118
108
if (gradle. startParameter. isOffline()) {
119
109
systemProperties ' TESTS_ARE_OFFLINE' : ' 1'
120
110
}
121
-
122
111
dependsOn copyIntegrationTestJRuby
123
112
}
124
113
125
-
126
-
127
114
task installGroovyDoc (type : Copy ) {
128
115
from ({new File (buildDir,' docs/groovydoc' )}) {
129
116
include ' **'
0 commit comments