Specify neoforge layer in manifest

This commit is contained in:
DBotThePony 2024-08-27 22:04:50 +07:00
parent 7609a23dd6
commit 34543bcbc3
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 19 additions and 1 deletions

View File

@ -47,6 +47,15 @@ tasks {
archiveClassifier.set("sources")
from(sourceSets.main.get().allSource)
}
jar {
manifest {
attributes(
"Automatic-Module-Name" to "ru.dbotthepony.kommons",
"FMLModType" to "LIBRARY"
)
}
}
}
version = projectVersion
@ -72,6 +81,15 @@ subprojects {
archiveClassifier.set("sources")
from(sourceSets.main.get().allSource)
}
jar {
manifest {
attributes(
"Automatic-Module-Name" to "ru.dbotthepony.kommons",
"FMLModType" to "LIBRARY"
)
}
}
}
kotlin {

View File

@ -4,7 +4,7 @@ kotlin.code.style=official
specifyKotlinAsDependency=false
projectGroup=ru.dbotthepony.kommons
projectVersion=3.1.0
projectVersion=3.1.1
guavaDepVersion=33.0.0
gsonDepVersion=2.8.9