1

Add Sonatype configuration
Some checks failed
Build & Release / release-library (push) Failing after 1m41s

This commit is contained in:
2024-11-04 17:56:35 +01:00
parent 176f3247a3
commit 372640e5ef
3 changed files with 14 additions and 41 deletions

View File

@@ -38,6 +38,16 @@ test {
}
publishing {
repositories {
maven {
name = "sonatype"
url = uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
credentials {
username = findProperty('SONATYPE_USER') as String
password = findProperty('SONATYPE_PASSWORD') as String
}
}
}
publications {
mavenJava(MavenPublication) {
artifactId = 'assertj-json'