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

This commit is contained in:
John Ahlroos 2024-11-04 17:56:35 +01:00
parent 176f3247a3
commit 372640e5ef
Signed by: john
GPG Key ID: 258D0F70DB84CD5D
3 changed files with 14 additions and 41 deletions

View File

@ -8,6 +8,8 @@ env:
ORG_GRADLE_PROJECT_BUILD_VERSION: ${{ gitea.ref_name }}
DEVSOAP_GPG_KEY: ${{ secrets.GPG_DEVSOAP_PRIVATE_KEY }}
DEVSOAP_GPG_PASSWORD: ${{ secrets.GPG_DEVSOAP_PASSPHRASE }}
SONATYPE_USER: ${{ secrets.SONATYPE_USER }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
TAG: ${{ gitea.ref_name }}
RUNNER_TOOL_CACHE: /toolcache

43
.gitignore vendored
View File

@ -1,42 +1,3 @@
.gradle
build/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/
### IntelliJ IDEA ###
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
*.iws
*.iml
*.ipr
out/
!**/src/main/**/out/
!**/src/test/**/out/
### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
### VS Code ###
.vscode/
### Mac OS ###
.DS_Store
build
.idea

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'