HHH-14083 Enable automatic Maven Central sync when calling task bintrayPublish

This commit is contained in:
Yoann Rodière 2020-06-04 08:07:01 +02:00 committed by Andrea Boriero
parent 80db996ea5
commit 0a0ad26d35
1 changed files with 6 additions and 2 deletions

View File

@ -14,8 +14,10 @@ apply plugin: 'com.jfrog.bintray'
ext {
bintrayUser = project.hasProperty( 'PERSONAL_BINTRAY_USER' ) ? project.property( 'PERSONAL_BINTRAY_USER' ) : null
bintrayKey = project.hasProperty( 'PERSONAL_BINTRAY_API_KEY' ) ? project.property( 'PERSONAL_BINTRAY_API_KEY' ) : null
bintrayUser = project.findProperty( 'PERSONAL_BINTRAY_USER' )
bintrayKey = project.findProperty( 'PERSONAL_BINTRAY_API_KEY' )
sonatypeOssrhUser = project.findProperty( 'SONATYPE_OSSRH_USER' )
sonatypeOssrhPassword = project.findProperty( 'SONATYPE_OSSRH_PASSWORD' )
}
@ -58,6 +60,8 @@ bintray {
]
mavenCentralSync {
sync = true
user = project.sonatypeOssrhUser
password = project.sonatypeOssrhPassword
}
}
}