Skip to content

Commit f97f985

Browse files
committed
⬆️
Kotlin 1.2.40 Gradle 4.7 KotlinTest 3.0.4 Shadow Plugin 2.0.3
1 parent fc409fb commit f97f985

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

build.gradle

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ group = 'com.github.kotlin-graphics'
1212

1313
buildscript {
1414

15-
ext.kotlinVersion = '1.2.40-eap-51'
15+
ext.kotlinVersion = '1.2.40'
1616

1717
repositories {
1818
mavenCentral()
@@ -22,7 +22,8 @@ buildscript {
2222
}
2323
dependencies {
2424
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
25-
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.2'
25+
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.3'
26+
classpath "org.junit.platform:junit-platform-gradle-plugin:1.1.0"
2627
}
2728
}
2829

@@ -34,7 +35,9 @@ dependencies {
3435

3536
testCompile 'io.kotlintest:kotlintest:2.0.7'
3637

37-
compile 'com.github.kotlin-graphics:gln:5e87f2c0d2ad9a20b41cc6d94e68a8ba59a5b622'
38+
compile 'com.github.kotlin-graphics:gln:b45da5f3bed9b2aaa4e8a1216a6752b8ceb1e4b3'
39+
40+
testCompile 'io.kotlintest:kotlintest-runner-junit5:3.0.4'
3841

3942
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
4043

src/test/kotlin/uno/ascii85.kt

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
package uno
22

3-
import io.kotlintest.matchers.shouldBe
4-
import io.kotlintest.matchers.shouldEqual
5-
import io.kotlintest.matchers.shouldNotBe
6-
import io.kotlintest.matchers.shouldThrow
3+
import io.kotlintest.shouldBe
4+
import io.kotlintest.shouldThrow
75
import io.kotlintest.specs.StringSpec
86
import uno.convert.Ascii85
9-
import java.nio.charset.StandardCharsets
107
import java.util.*
118

129

0 commit comments

Comments
 (0)