Last active
August 29, 2015 14:14
-
-
Save zirouan/a9d2d402c21db31c57e1 to your computer and use it in GitHub Desktop.
build.gradle library
This file contains hidden or 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
apply plugin: 'maven' | |
uploadArchives { | |
repositories { | |
mavenDeployer { | |
repository(url: "https://oss.sonatype.org/content/repositories/snapshots") | |
pom.groupId = GROUP | |
pom.artifactId = POM_ARTIFACT_ID | |
pom.version = VERSION_NAME | |
} | |
} | |
} | |
task install(dependsOn: uploadArchives) | |
apply from: 'https://raw.github.com/chrisbanes/gradle-mvn-push/master/gradle-mvn-push.gradle' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment