Created
December 17, 2018 07:04
-
-
Save Pinned/2bbe4757fdd972ebf3f8ea964bc71da6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
uploadArchives { | |
repositories { | |
// mavenLocal config | |
mavenDeployer { | |
repository(url: mavenLocal().url) | |
pom.groupId = rootProject.group | |
pom.artifactId = project.name | |
pom.version = rootProject.version | |
} | |
if (publishToNexus) { | |
// nexus config | |
mavenDeployer { | |
repository(url: nexusURL) { | |
authentication(userName: nexusUser, password: nexusPass) | |
} | |
pom.groupId = rootProject.group | |
pom.artifactId = project.name | |
pom.version = rootProject.version | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment