Uplift of maven

This commit is contained in:
Ziver Koc 2024-09-10 00:31:37 +02:00
parent 8fe6e4f05d
commit 790c7f8e52

64
build_publish.gradle Normal file
View file

@ -0,0 +1,64 @@
// Documentation: https://jreleaser.org/guide/latest/examples/maven/maven-central.html#_gradle
// Secrets stored in ~/.jreleaser/config.toml
publishing {
publications {
maven(MavenPublication) {
groupId = 'se.koc'
artifactId = 'zutil'
from components.java
pom {
name = 'Zutil'
description = 'A library containing utility classes and code snippets.'
url = 'https://github.com/Ziver/zutil'
licenses {
license {
name = 'MIT License'
url = 'http://www.opensource.org/licenses/mit-license.php'
}
}
developers {
developer {
id = 'Ziver Koc'
name = 'dev@koc.se'
}
}
scm {
connection = 'scm:git:https://github.com/Ziver/zutil.git'
developerConnection = 'scm:git:https://repo.koc.se/zutil-java.git'
url = 'https://github.com/Ziver/zutil'
}
}
}
}
repositories {
maven {
url = layout.buildDirectory.dir('staging-deploy')
}
}
}
jreleaser {
signing {
active = 'ALWAYS'
armored = true
}
deploy {
maven {
nexus2 {
'maven-central' {
active = 'ALWAYS'
url = 'https://s01.oss.sonatype.org/service/local'
snapshotUrl = 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
closeRepository = true
releaseRepository = true
stagingRepository('build/staging-deploy')
}
}
}
}
}