We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbfb4ae commit 07eed8bCopy full SHA for 07eed8b
kotlinx-coroutines-core/build.gradle
@@ -219,6 +219,7 @@ static def setupManifest(Jar jar) {
219
jar.manifest {
220
attributes "Premain-Class": "kotlinx.coroutines.debug.AgentPremain"
221
attributes "Can-Retransform-Classes": "true"
222
+ attributes "Automatic-Module-Name": "kotlinx.coroutines.core"
223
}
224
225
ui/kotlinx-coroutines-javafx/build.gradle.kts
@@ -52,6 +52,12 @@ val jdk8Test by tasks.registering(Test::class) {
52
dependsOn(checkJdk8)
53
54
55
+tasks.jar {
56
+ manifest {
57
+ attributes["Automatic-Module-Name"] = "kotlinx.coroutines.javafx"
58
+ }
59
+}
60
+
61
tasks.build {
62
dependsOn(jdk8Test)
63
0 commit comments