added publication of envelope loader jar

This commit is contained in:
2023-01-11 20:37:37 +08:00
parent 4ddfdc388d
commit 1791ba7816
2 changed files with 28 additions and 11 deletions

View File

@@ -1,5 +1,6 @@
plugins {
alias catalog.plugins.multi.release.jar
id 'maven-publish'
}
ext {
@@ -8,4 +9,18 @@ ext {
compileJava11 {
exclude('module-info.java')
}
}
publishing {
publications {
maven(MavenPublication) {
group = "net.woggioni.envelope"
artifactId = rootProject.name + '-' + project.name
version = rootProject.version
from components.java
}
}
}