File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11## Contributors
22
33
4- Initial code contribution: Richard Adams, ResearchSpace.
4+ Initial code contribution: Richard Adams (otter606).
5+ PRs and contributions: Aleix Mariné Tena (AleixMT)
Original file line number Diff line number Diff line change @@ -11,6 +11,12 @@ repositories {
1111 mavenCentral()
1212}
1313
14+ configurations. all {
15+ resolutionStrategy {
16+ force ' xml-apis:xml-apis:1.0.b2'
17+ }
18+ }
19+
1420sourceSets {
1521 integrationTest {
1622 java {
5965
6066
6167task integrationTest (type : Test ) {
62- testClassesDir = sourceSets. integrationTest. output. classesDir
68+ testClassesDirs = sourceSets. integrationTest. output
6369 classpath = sourceSets. integrationTest. runtimeClasspath
6470 outputs. upToDateWhen { false }
6571 systemProperties = System . getProperties()
@@ -73,6 +79,8 @@ tasks.withType(Test) {
7379}
7480
7581// Lists dependencies
76- task listJars << {
77- configurations. compile. each { File file -> println file. name }
82+ task listJars {
83+ doLast {
84+ configurations. compile. each { File file -> println file. name }
85+ }
7886}
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-3.0 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-4.10.2 -bin.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments