Added release URL output to console

This commit is contained in:
nathan 2018-08-18 15:17:19 +02:00
parent 178bea2e18
commit e1091b1afb

View File

@ -542,6 +542,16 @@ signing {
sign publishing.publications.SystemTray
}
// output the release URL in the console
releaseRepository.doLast {
def URL = 'https://oss.sonatype.org/content/repositories/releases/'
def projectName = project.group.toString().replaceAll('\\.', '/')
def name = project.ext.name
def version = project.version
println("Maven URL: ${URL}${projectName}/${name}/${version}/")
}
// we don't use maven with the plugin (it's uploaded separately to gradle plugins)
tasks.withType(PublishToMavenRepository) {
onlyIf {