Skip to content

Instantly share code, notes, and snippets.

@AdamCarroll
Created March 25, 2018 13:46
Show Gist options
  • Save AdamCarroll/f721e14279866291c5103203c9404e0a to your computer and use it in GitHub Desktop.
Save AdamCarroll/f721e14279866291c5103203c9404e0a to your computer and use it in GitHub Desktop.
Gradle snippet for local Maven publish
apply plugin: 'maven-publish'
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment