Update Automatic-Module-Name

This commit is contained in:
DBotThePony 2024-09-01 10:55:02 +07:00
parent 34543bcbc3
commit e19b511e6c
Signed by: DBot
GPG Key ID: DCC23B5715498507
4 changed files with 22 additions and 5 deletions

View File

@ -84,10 +84,7 @@ subprojects {
jar {
manifest {
attributes(
"Automatic-Module-Name" to "ru.dbotthepony.kommons",
"FMLModType" to "LIBRARY"
)
attributes("FMLModType" to "LIBRARY")
}
}
}

View File

@ -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

View File

@ -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<MavenPublication>("mavenJava") {

View File

@ -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<MavenPublication>("mavenJava") {