Skip to content

Commit 3538d42

Browse files
committed
gradle minor
1 parent 57f6373 commit 3538d42

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,20 @@ plugins {
44
id "com.github.johnrengelman.shadow" version '2.0.4'
55
}
66

7-
ext.moduleName = 'com.github.kotlin_graphics.kotlin_unsigned'
7+
ext{
8+
moduleName = 'com.github.kotlin_graphics.kotlin_unsigned'
9+
kotlintest_version = '3.1.10'
10+
}
811

912
dependencies {
1013

1114
implementation "org.jetbrains.kotlin:kotlin-stdlib"
12-
// implementation "org.jetbrains.kotlin:kotlin-reflect:1.3.10" // fix kotlintest classpath warnings
1315

14-
testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.1.10'
16+
testImplementation "io.kotlintest:kotlintest-runner-junit5:$kotlintest_version".toString()
1517
}
1618

1719
repositories {
1820
mavenCentral()
19-
// maven { url = "https://dl.bintray.com/kotlin/kotlin-eap" }
2021
maven { url = "https://jitpack.io" }
2122
}
2223

0 commit comments

Comments
 (0)