From 2513ceb236f626e32e743817171dd3fbac5b4c20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Hohwiller?= Date: Sat, 14 Oct 2023 18:35:23 +0200 Subject: [PATCH] Re-add module name org.teavm.jso (#817) Fix #778 --- jso/core/build.gradle.kts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/jso/core/build.gradle.kts b/jso/core/build.gradle.kts index a55b96529..4d0279616 100644 --- a/jso/core/build.gradle.kts +++ b/jso/core/build.gradle.kts @@ -32,4 +32,10 @@ dependencies { teavmPublish { artifactId = "teavm-jso" -} \ No newline at end of file +} + +tasks.withType { + manifest { + attributes["Automatic-Module-Name"] = "org.teavm.jso" + } +}