Calling nexus from Gradle
Gradle - Maven plugin
plugins {
id 'maven'
}
Gradle has a built in dependency management component that supports the Maven repository format.
repositories {
maven {
url "http://localhost:8081/repository/maven-public/"
}
}
With the uploadArchives
Steps:
nexusUrl=http://localhost:8081/nexus
nexusUsername=admin
nexusPassword=admin123
uploadArchives {
repositories {
mavenDeployer {
repository(url: "${nexusUrl}/content/repositories/releases") {
authentication(userName: nexusUsername, password: nexusPassword)
}
snapshotRepository(url: "${nexusUrl}/content/repositories/snapshots") {
authentication(userName: nexusUsername, password: nexusPassword)
}
}
}
}
cd projectRoot
gradle upload
See Doc
Example with maven
uploadShadow {
repositories {
mavenDeployer {
repository(url: "${nexusUrl}/content/repositories/snapshots") {
authentication(userName: nexusUsername, password: nexusPassword)
}
}
}
https://github.com/sonatype/nexus-book-examples/tree/master/gradle