Skip to content

Commit 183ea0b

Browse files
committed
⬆️ kotlin 1.3.11
1 parent 4c5a91c commit 183ea0b

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

build.gradle

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,25 @@ ext.moduleName = 'com.github.kotlin_graphics.kotlin_unsigned'
77

88
buildscript {
99

10-
ext.kotlinVersion = '1.3.10'
10+
ext.kotlinVersion = '1.3.11'
1111

1212
repositories {
1313
jcenter() // shadow
1414
mavenCentral()
1515
maven { url = "https://dl.bintray.com/kotlin/kotlin-eap" }
1616
}
1717
dependencies {
18-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
18+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion".toString()
1919
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'
2020
classpath "org.junit.platform:junit-platform-gradle-plugin:1.2.0"
2121
}
2222
}
2323

2424
dependencies {
2525

26-
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
26+
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion".toString()
2727

28-
testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.1.10'
28+
testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.1.11'
2929
}
3030

3131
repositories {
@@ -58,7 +58,5 @@ artifacts {
5858

5959
jar {
6060
inputs.property("moduleName", moduleName)
61-
manifest {
62-
attributes('Automatic-Module-Name': moduleName)
63-
}
61+
manifest.attributes('Automatic-Module-Name': moduleName)
6462
}

0 commit comments

Comments
 (0)