This commit is contained in:
ShubhamRwt
2022-02-18 21:51:07 +05:30
parent 368bed514e
commit 16cd99aece
3 changed files with 6 additions and 1 deletions

View File

@@ -77,6 +77,6 @@ jobs:
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USER }}
ORG_GRADLE_PROJECT_sonatypePassword : ${{ secrets.SONATYPE_PASSWORD }}
with:
arguments: publishToSonatype closeAndReleaseSonatypeStagingRepository
arguments: publishToSonatype
dependencies-cache-enabled: true
configuration-cache-enabled: true

View File

@@ -35,6 +35,7 @@ ext {
configure(project.coreProjects) {
apply plugin: 'java'
apply plugin: 'signing'
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply from: "${rootDir}/publishing.gradle"

View File

@@ -44,6 +44,10 @@ artifacts {
archives javadocJar
}
signing {
sign publishing.publications
}
publishing {
publications {
mavenJava(MavenPublication) {