This Gradle plugin is a turn-key solution for publishing to Nexus. You can use it to publish your artifacts to any Nexus instance (internal or public). It is great for publishing your open source to Sonatype, and then to Maven Central, in a fully automated fashion.
Vanilla Gradle is great but it cannot fully automate publications to Nexus. This plugin enables isolation of staging repositories so that you can reliably publish from CI, and each publication uses a brand new, explicitly created staging repo (more). Moreover, the plugin provides tasks to close and release staging repositories, covering the whole releasing process to Maven Central.
This plugin is intended as a replacement of the Gradle Nexus Staging Plugin and Nexus Publish Plugin duo. See a dedicated migration guide.
The plugin must be applied to the root project and requires Gradle 5.0 or later. It is important to set the group and the version to the root project, so the plugin can detect if it is a snapshot version or not in order to select the correct repository where artifacts will be published.
plugins {
id("io.github.gradle-nexus.publish-plugin") version "«version»"
}
group = "com.example.library"
version = "1.0.0"
In order to publish to Maven Central (aka the Central Repository or just Central) via Sonatype's OSSRH Nexus, you simply need to add the sonatype()
repository like in the example below. Its nexusUrl
and snapshotRepositoryUrl
values are pre-configured.
nexusPublishing {
repositories {
sonatype()
}
}
Important. Users registered in Sonatype after 24 February 2021 need to customize the following URLs:
nexusPublishing {
repositories {
sonatype { //only for users registered in Sonatype after 24 Feb 2021
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
}
}
}
(if unsure check the server address in a corresponding ticket for your project in Sonatype's Jira)
In addition, for both groups of users, you need to set your Nexus credentials. To increase security, it is advised to use the user token's username and password pair (instead of regular username and password). Those values should be set as the sonatypeUsername
and sonatypePassword
project properties, e.g. in ~/.gradle/gradle.properties
or via the ORG_GRADLE_PROJECT_sonatypeUsername
and ORG_GRADLE_PROJECT_sonatypePassword
environment variables.
Alternatively, you can configure credentials in the sonatype
block:
nexusPublishing {
repositories {
sonatype {
username = "your-user-token-username"
password = "your-user-token-password"
}
}
}
Configure Signing
Add the signing plugin:
plugins {
// ...
signing
}
then configure:
signing {
sign(publishing.publications["mavenJava"])
}
publishing {
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
pom {
name.set("<<Component Name>>")
description.set("<<Component Description>>")
url.set("<<Component URL>>")
licenses {
license {
name.set("<<License Name>>")
url.set("<<License URL>>")
}
}
developers {
developer {
id.set("<<Developer ID>>")
name.set("<<Developer Name>>")
email.set("<<Developer Email>>")
}
}
scm {
connection.set("<<SCM Connection URL>>")
developerConnection.set("<<SCM Dev Connection URL>>")
url.set("<<Source URL>>")
}
}
}
}
}
Finally, call publishToSonatype closeAndReleaseSonatypeStagingRepository
to publish all publications to Sonatype's OSSRH Nexus and subsequently close and release the corresponding staging repository, effectively making the artifacts available in Maven Central (usually after a few minutes).
Note that until #19 is done, the publishToSonatype closeAndReleaseSonatypeStagingRepository
tasks have to be executed in the same Gradle invocation because closeAndRelease
relies on information that is not persisted between calls to Gradle. Failing to do so will result in an error like No staging repository with name sonatype created
.
Please bear in mind that - especially on the initial project publishing to Maven Central - it might be wise to call just publishToSonatype closeSonatypeStagingRepository
and manually verify that the artifacts placed in the closed staging repository in Nexus looks ok. After that, the staging repository might be dropped (if needed) or manually released from the Nexus UI.
plugins {
id "java-library"
id "maven-publish"
id "signing"
id "io.github.gradle-nexus.publish-plugin" version "«version»"
}
publishing {
publications {
mavenJava(MavenPublication) {
from(components.java)
}
pom {
name = "<<Component Name>>"
description = "<<Component Description>>"
url = "<<Component URL>>"
licenses {
license {
name = "<<License Name>>"
url = "<<License URL>>"
}
}
developers {
developer {
id = "<<Developer ID>>"
name = "<<Developer Name>>"
email = "<<Developer Email>>"
}
}
scm {
connection = "<<SCM Connection URL>>"
developerConnection = "<<SCM Dev Connection URL>>"
url = "<<Source URL>>"
}
}
}
}
nexusPublishing {
repositories {
myNexus {
nexusUrl = uri("https://your-server.com/staging")
snapshotRepositoryUrl = uri("https://your-server.com/snapshots")
username = "your-username" // defaults to project.properties["myNexusUsername"]
password = "your-password" // defaults to project.properties["myNexusPassword"]
}
}
}
signing {
sign publishing.publications.mavenJava
}
plugins {
`java-library`
`maven-publish`
signing
id("io.github.gradle-nexus.publish-plugin") version "«version»"
}
publishing {
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
}
pom {
name.set("<<Component Name>>")
description.set("<<Component Description>>")
url.set("<<Component URL>>")
licenses {
license {
name.set("<<License Name>>")
url.set("<<License URL>>")
}
}
developers {
developer {
id.set("<<Developer ID>>")
name.set("<<Developer Name>>")
email.set("<<Developer Email>>")
}
}
scm {
connection.set("<<SCM Connection URL>>")
developerConnection.set("<<SCM Dev Connection URL>>")
url.set("<<Source URL>>")
}
}
}
}
nexusPublishing {
repositories {
create("myNexus") {
nexusUrl.set(uri("https://your-server.com/staging"))
snapshotRepositoryUrl.set(uri("https://your-server.com/snapshots"))
username.set("your-username") // defaults to project.properties["myNexusUsername"]
password.set("your-password") // defaults to project.properties["myNexusPassword"]
}
}
}
signing {
sign(publishing.publications["mavenJava"])
}
You can configure the connectTimeout
and clientTimeout
properties on the nexusPublishing
extension to set the connect and read/write timeouts (both default to 5 minutes). Good luck!
When closing or releasing a staging repository the plugin first initiates the transition and then retries a configurable number of times with a configurable delay after each attempt. Both can be configured like this:
import java.time.Duration
nexusPublishing {
transitionCheckOptions {
maxRetries = 100
delayBetween = Duration.ofSeconds(5)
}
}
import java.time.Duration
nexusPublishing {
transitionCheckOptions {
maxRetries.set(100)
delayBetween.set(Duration.ofSeconds(5))
}
}
maxRetries
default value is 60.delayBetween
default value is 10 seconds.
Log into your staging repository account. On the left side, expand "Build Promotion", then click "Staging Repositories". Here, you should see your newly created repositories. You can click on one of them, then select the "Activity" tab to see any errors that have occurred.
The plugin does the following:
- configure a Maven artifact repository for each repository defined in the
nexusPublishing { repositories { ... } }
block in each subproject that applies themaven-publish
plugin - creates a
retrieve{repository.name.capitalize()}StagingProfile
task that retrieves the staging profile id from the remote Nexus repository. This is a diagnostic task to enable setting the configuration propertystagingProfileId
innexusPublishing { repositories { myRepository { ... } } }
. Specifying the configuration property rather than relying on the API call is considered a performance optimization. - create a
initialize${repository.name.capitalize()}StagingRepository
task that starts a new staging repository in case the project's version does not end with-SNAPSHOT
(customizable via theuseStaging
property) and sets the URL of the corresponding Maven artifact repository accordingly. In case of a multi-project build, all subprojects with the samenexusUrl
will use the same staging repository. - make all publishing tasks for each configured repository depend on the
initialize${repository.name.capitalize()}StagingRepository
task - create a
publishTo${repository.name.capitalize()}
lifecycle task that depends on all publishing tasks for the corresponding Maven artifact repository - create
close${repository.name.capitalize()}StagingRepository
andrelease${repository.name.capitalize()}StagingRepository
tasks that must run after the all publishing tasks- to simplify the common use case also a
closeAndRelease${repository.name.capitalize()}StagingRepository
task is created which depends on all theclose*
andrelease*
tasks for a given repository
- to simplify the common use case also a
In 2015, Marcin Zajączkowski created gradle-nexus-staging-plugin which was providing an ability to close and release staging repositories in Nexus repository manager. It opened an opportunity to manage releasing Gradle projects to Maven Central completely from code. Over the years, it has been adopted by various projects across the globe, however there was a small problem. Due to technical limitations in the publishing process in Gradle, it was required to use heuristics to track implicitly created staging repositories, what often failed for multiple repositories in a given state. The situation became even worse when Travis changed its network architecture in late 2019 and the majority of releases started to fail. Here, Marc Philipp entered the stage who created Nexus Publish Plugin which was enriching the publishing mechanism in Gradle to explicitly create staging repositories and publish (upload) artifacts directly to it.
Those two plugins nicely worked together, providing a reliable way to handle publishing artifacts to Maven Central (and to other Nexus instances in general). However, the need of using two plugins was very often confusing for users. As a result, an idea to create one plugin mixing the aforementioned capabilities emerged. It materialized in 2020/2021 as Gradle Nexus Publish Plugin, an effect of combined work of Marc and Marcin, supported by a pack of contributors.