Skip to content

Commit d8cb6d0

Browse files
authored
Merge pull request #94 from agarneha1331/gradle_fix_cli_args
Fix in gradle.build to honour cli args
2 parents 8a70635 + 70e5955 commit d8cb6d0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ tasks.withType(JavaCompile) {
2424
options.encoding = 'UTF-8'
2525
}
2626

27+
tasks.withType(Test) {
28+
systemProperties = System.properties
29+
}
30+
2731
task sampleTest(type: Test) {
2832
useTestNG() {
2933
dependsOn cleanTest

0 commit comments

Comments
 (0)