From e19b511e6cf62dbbd148e633502f3ef4f4191721 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sun, 1 Sep 2024 10:55:02 +0700 Subject: [PATCH] Update Automatic-Module-Name --- build.gradle.kts | 5 +---- gradle.properties | 2 +- gson/build.gradle.kts | 10 ++++++++++ guava/build.gradle.kts | 10 ++++++++++ 4 files changed, 22 insertions(+), 5 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2e0afd2..4446678 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -84,10 +84,7 @@ subprojects { jar { manifest { - attributes( - "Automatic-Module-Name" to "ru.dbotthepony.kommons", - "FMLModType" to "LIBRARY" - ) + attributes("FMLModType" to "LIBRARY") } } } diff --git a/gradle.properties b/gradle.properties index 7d8a742..ce12884 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ kotlin.code.style=official specifyKotlinAsDependency=false projectGroup=ru.dbotthepony.kommons -projectVersion=3.1.1 +projectVersion=3.1.2 guavaDepVersion=33.0.0 gsonDepVersion=2.8.9 diff --git a/gson/build.gradle.kts b/gson/build.gradle.kts index fcf3e88..be87038 100644 --- a/gson/build.gradle.kts +++ b/gson/build.gradle.kts @@ -19,6 +19,16 @@ dependencies { implementation("it.unimi.dsi:fastutil:$fastutilVersion") } +tasks { + jar { + manifest { + attributes( + "Automatic-Module-Name" to "ru.dbotthepony.kommons.gson" + ) + } + } +} + publishing { publications { create("mavenJava") { diff --git a/guava/build.gradle.kts b/guava/build.gradle.kts index 961ef6a..9f2d8df 100644 --- a/guava/build.gradle.kts +++ b/guava/build.gradle.kts @@ -16,6 +16,16 @@ dependencies { implementation("com.google.guava:guava:$guavaDepVersion-jre") } +tasks { + jar { + manifest { + attributes( + "Automatic-Module-Name" to "ru.dbotthepony.kommons.guava" + ) + } + } +} + publishing { publications { create("mavenJava") {