Skip to content

Commit cd70718

Browse files
committed
Dependency updates
1 parent 76e9e5c commit cd70718

File tree

6 files changed

+12
-15
lines changed

6 files changed

+12
-15
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
build/
44
out/
55
.gradle/
6+
.kotlintest

build.gradle.kts

+8-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
import org.gradle.kotlin.dsl.resolver.buildSrcSourceRootsFilePath
2-
import org.kt3k.gradle.plugin.coveralls.CoverallsTask
3-
41
group = "deltadak"
52
version = "0.0"
63

@@ -38,14 +35,14 @@ dependencies {
3835
compile(kotlin("test-junit"))
3936

4037
// JUnit 5
41-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.3.2")
42-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.3.2")
43-
testRuntime("org.junit.platform:junit-platform-console:1.3.2")
38+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.4.0-RC2")
39+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.4.0-RC2")
40+
testRuntime("org.junit.platform:junit-platform-console:1.4.0-RC2")
4441

4542
// Kotlintest
46-
testCompile("io.kotlintest:kotlintest-core:3.1.11")
47-
testCompile("io.kotlintest:kotlintest-assertions:3.1.11")
48-
testCompile("io.kotlintest:kotlintest-runner-junit5:3.1.11")
43+
testCompile("io.kotlintest:kotlintest-core:3.2.1")
44+
testCompile("io.kotlintest:kotlintest-assertions:3.2.1")
45+
testCompile("io.kotlintest:kotlintest-runner-junit5:3.2.1")
4946

5047
// JavaFX tests using TestFX
5148
testCompile("org.testfx:testfx-core:4.0.15-alpha")
@@ -54,8 +51,8 @@ dependencies {
5451
// testCompile("org.testfx:openjfx-monocle:8u76-b04") // jdk-9+181 for Java 9
5552

5653
// Spek
57-
testCompile("org.spekframework.spek2:spek-dsl-jvm:2.0.0-rc.1")
58-
testRuntime("org.spekframework.spek2:spek-runner-junit5:2.0.0-rc.1")
54+
testCompile("org.spekframework.spek2:spek-dsl-jvm:2.0.0")
55+
testRuntime("org.spekframework.spek2:spek-runner-junit5:2.0.0")
5956
}
6057

6158
repositories {

gradle/wrapper/gradle-wrapper.jar

-12 Bytes
Binary file not shown.
+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Mon Dec 10 12:30:01 CET 2018
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.0-all.zip

gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ APP_NAME="Gradle"
2828
APP_BASE_NAME=`basename "$0"`
2929

3030
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
31-
DEFAULT_JVM_OPTS=""
31+
DEFAULT_JVM_OPTS='"-Xmx64m"'
3232

3333
# Use the maximum available, or set MAX_FD != -1 to use that value.
3434
MAX_FD="maximum"

gradlew.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set APP_BASE_NAME=%~n0
1414
set APP_HOME=%DIRNAME%
1515

1616
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
17-
set DEFAULT_JVM_OPTS=
17+
set DEFAULT_JVM_OPTS="-Xmx64m"
1818

1919
@rem Find java.exe
2020
if defined JAVA_HOME goto findJavaFromJavaHome

0 commit comments

Comments
 (0)