diff --git a/build.gradle b/build.gradle index 58e8f15..80def92 100644 --- a/build.gradle +++ b/build.gradle @@ -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 {