Skip to content

Commit f85a369

Browse files
committed
Bring Gradle to 5.2.1
Signed-off-by: Gábor Lipták <gliptak@gmail.com>
1 parent a18b368 commit f85a369

13 files changed

Lines changed: 22 additions & 14 deletions

File tree

build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ buildscript {
2020
}
2121

2222
wrapper {
23-
gradleVersion = "4.10.3"
23+
gradleVersion = "5.2.1"
2424
distributionType = Wrapper.DistributionType.ALL
2525
}
2626
}
@@ -69,7 +69,8 @@ allprojects {
6969
sonatypeUploadUrl = isSnapshot ? sonatypeSnapshotUrl : sonatypeReleaseUrl
7070
primaryEmail = "functionaljava@googlegroups.com"
7171

72-
dependencyJunit = "org.junit.vintage:junit-vintage-engine:5.3.2"
72+
junitCompile = "junit:junit:4.12"
73+
junitRuntime = "org.junit.vintage:junit-vintage-engine:5.3.2"
7374

7475
displayCompilerWarnings = true
7576
}

consume/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ archivesBaseName = "${project.projectName}-${project.name}"
44
dependencies {
55
compile("$group:$projectName:$fjConsumeVersion")
66

7-
testCompile dependencyJunit
7+
testCompile junitCompile
8+
testRuntime junitRuntime
89
}

core/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ ext {
66
archivesBaseName = project.projectName
77

88
dependencies {
9-
testCompile dependencyJunit
9+
testCompile junitCompile
10+
testRuntime junitRuntime
1011
testCompile 'com.h2database:h2:1.4.197'
1112
testCompile 'commons-dbutils:commons-dbutils:1.7'
1213
}

demo/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ archivesBaseName = "${project.projectName}-${project.name}"
88
dependencies {
99
compile project(":core")
1010
compile project(":quickcheck")
11-
testCompile dependencyJunit
11+
testCompile junitCompile
12+
testRuntime junitRuntime
1213
}
1314

1415
test {

gradle/wrapper/gradle-wrapper.jar

-987 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

java-core/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ ext {
77

88
dependencies {
99
compile project(":core")
10-
testCompile dependencyJunit
10+
testCompile junitCompile
11+
testRuntime junitRuntime
1112
}
1213

1314
performSigning(signingEnabled, signModule)

performance/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

22
dependencies {
33
compile project(":core")
4-
testCompile dependencyJunit
4+
testCompile junitCompile
5+
testRuntime junitRuntime
56
}

0 commit comments

Comments
 (0)