Skip to content

Commit 14cc9d1

Browse files
committed
Jigsaw support
Kotlin 1.3.10
1 parent e94fc79 commit 14cc9d1

File tree

3 files changed

+13
-29
lines changed

3 files changed

+13
-29
lines changed

.idea/modules.xml

Lines changed: 2 additions & 0 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: 1 addition & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ apply plugin: 'kotlin'
33

44
apply plugin: 'com.github.johnrengelman.shadow'
55

6+
ext.moduleName = 'com.github.kotlin_graphics.kotlin_unsigned'
7+
68
buildscript {
79

8-
ext.kotlinVersion = '1.3.0'
10+
ext.kotlinVersion = '1.3.10'
911

1012
repositories {
1113
jcenter() // shadow
@@ -52,4 +54,11 @@ task javadocJar(type: Jar, dependsOn: javadoc) {
5254
artifacts {
5355
archives sourcesJar
5456
archives javadocJar
57+
}
58+
59+
jar {
60+
inputs.property("moduleName", moduleName)
61+
manifest {
62+
attributes('Automatic-Module-Name': moduleName)
63+
}
5564
}

0 commit comments

Comments
 (0)