Skip to content
This repository was archived by the owner on Nov 6, 2023. It is now read-only.

Commit b4461dc

Browse files
committed
Remove support for Java 8, update dependencies, improve CI & ReadMe
* Java 8: The TravisCI build is failing due to trying to run the build in MacOS with Java 8 (not supported) * Dependencies: Updated the Junit to 5.3.2 and Gradle to 5.1.1
1 parent c8558bf commit b4461dc

File tree

5 files changed

+90
-95
lines changed

5 files changed

+90
-95
lines changed

β€Žbuild.gradleβ€Ž

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
apply plugin: 'java'
22

3-
sourceCompatibility = 1.8
3+
sourceCompatibility = 1.11
4+
targetCompatibility = 1.11
45

56
repositories {
67
mavenCentral()
78
}
89

910
dependencies {
10-
testCompile('org.junit.jupiter:junit-jupiter-api:5.2.0')
11-
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.2.0')
11+
testCompile('org.junit.jupiter:junit-jupiter-api:5.3.2')
12+
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.3.2')
1213
}
1314

1415
test {
@@ -21,9 +22,4 @@ test {
2122
reports {
2223
html.enabled = true
2324
}
24-
}
25-
26-
task wrapper(type: Wrapper) {
27-
description = 'Generates gradlew[.bat] scripts'
28-
gradleVersion = '4.6'
2925
}
1.8 KB
Binary file not shown.
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Fri Jun 01 07:06:45 CEST 2018
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10-all.zip

β€Ž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: 84 additions & 84 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)