Skip to content

Instantly share code, notes, and snippets.

@li-salvadorlopez
Created January 14, 2015 23:27
Show Gist options
  • Select an option

  • Save li-salvadorlopez/c125480571a210d3e361 to your computer and use it in GitHub Desktop.

Select an option

Save li-salvadorlopez/c125480571a210d3e361 to your computer and use it in GitHub Desktop.
gradle nexus upload
uploadArchives {
repositories {
mavenDeployer {
repository(url: "http://REPOSITORYURL/nexus/content/repositories/snapshots/") {
authentication(userName: "username", password: "password")
}
pom.version = "1.0-SNAPSHOT"
pom.artifactId = "artifactId"
pom.groupId = "com.example"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment