Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6ba3af4

Browse files
committedDec 10, 2018
v3.1.9
kotlin 1.3.11 shadow 4.0.3
1 parent 0bb7e6e commit 6ba3af4

File tree

4 files changed

+37
-13
lines changed

4 files changed

+37
-13
lines changed
 

‎.idea/modules.xml

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎.idea/modules/kotlin-unsigned.iml

Lines changed: 29 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎build.gradle

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
11
plugins {
22
id 'maven'
33
id "org.jetbrains.kotlin.jvm" version "1.3.11"
4-
id "com.github.johnrengelman.shadow" version '2.0.4'
4+
id "com.github.johnrengelman.shadow" version '4.0.3'
55
}
66

77
ext{
88
moduleName = 'com.github.kotlin_graphics.kotlin_unsigned'
9+
kotlin = 'org.jetbrains.kotlin:kotlin'
910
kotlin_version = '1.3.11'
1011
kotlintest_version = '3.1.11'
1112
}
1213

1314
dependencies {
1415

15-
implementation "org.jetbrains.kotlin:kotlin-stdlib"
16+
implementation "$kotlin-stdlib"
1617

1718
testImplementation "io.kotlintest:kotlintest-runner-junit5:$kotlintest_version".toString()
1819

1920
constraints {
20-
testImplementation("org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version")
21-
testImplementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version")
22-
testImplementation("org.jetbrains.kotlin:kotlin-reflect:$kotlin_version")
21+
testImplementation("$kotlin-stdlib:$kotlin_version")
22+
testImplementation("$kotlin-stdlib-jdk7:$kotlin_version")
23+
testImplementation("$kotlin-reflect:$kotlin_version")
2324
}
2425
}
2526

@@ -48,6 +49,4 @@ jar {
4849
manifest.attributes('Automatic-Module-Name': moduleName)
4950
}
5051

51-
test {
52-
useJUnitPlatform()
53-
}
52+
test.useJUnitPlatform()

‎src/main/kotlin/unsigned/unsigned.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ fun Char.toUint() = Uint(toInt())
1818
fun Char.toUlong() = Ulong(toLong())
1919
fun Char.toUshort() = Ushort(toShort())
2020

21-
val version = "3.1.8"
21+
val version = "3.1.9"

0 commit comments

Comments
 (0)
Please sign in to comment.