Publish entire java component and common (#3331)

This commit is contained in:
Luke Chambers 2022-10-03 10:37:22 -04:00 committed by GitHub
parent fc25592df6
commit 8224976393
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 4 deletions

View File

@ -11,8 +11,7 @@ publishing {
artifactId = project.name
version = project.version as String
artifact(tasks["shadowJar"])
artifact(tasks["sourcesJar"])
from(components["java"])
}
}
}
@ -31,4 +30,4 @@ artifactory {
setPublishIvy(false)
}
}
}
}

View File

@ -1,4 +1,8 @@
plugins {
id("geyser.publish-conventions")
}
dependencies {
api(libs.cumulus)
api(libs.gson)
}
}