Publishing seems to work locally now(?)

This commit is contained in:
RednedEpic 2022-04-24 14:07:39 -05:00
parent cbd25c0111
commit 766f28ec60
2 changed files with 1 additions and 8 deletions

View File

@ -7,7 +7,7 @@ plugins {
publishing {
publications.create<MavenPublication>("mavenJava") {
groupId = project.group as String
artifactId = "Geyser-" + project.name
artifactId = project.name
version = project.version as String
artifact(tasks["shadowJar"])

View File

@ -78,13 +78,6 @@ dependencies {
annotationProcessor(projects.ap)
}
publishing {
publications.named<MavenPublication>("mavenJava") {
artifact(tasks["jar"])
artifact(tasks["sourcesJar"])
}
}
configure<BlossomExtension> {
val indra = the<IndraGitExtension>()