aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts9
1 files changed, 7 insertions, 2 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index c4562de..c5b345d 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -51,6 +51,11 @@ dependencies {
"modTestmodImplementation"("com.terraformersmc:modmenu:4.0.6")
}
+java {
+ withSourcesJar()
+ withJavadocJar()
+}
+
tasks {
processResources {
val modId: String by project
@@ -160,8 +165,8 @@ githubRelease {
publishing {
publications {
create<MavenPublication>("mod") {
- groupId = group.toString()
- artifactId = base.archivesName.get()
+ groupId = "dev.isxander"
+ artifactId = "yet-another-config-lib"
from(components["java"])
}