Skip to content

Instantly share code, notes, and snippets.

@amolpednekar
Created September 24, 2020 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amolpednekar/b7a739b99133642d50d8bf2015ee6832 to your computer and use it in GitHub Desktop.
Save amolpednekar/b7a739b99133642d50d8bf2015ee6832 to your computer and use it in GitHub Desktop.
Publish to repo with dependencies
publishing {
publications{
myLibrary(MavenPublication) {
from components.java
}
}
repositories {
maven {
url = 'http://x.x.x.x:8082/repository/fabric-gateway-kotlin/'
credentials {
username = nexusUsername
password = nexusPassword
}
}
}
}
# Can also publish to local if you dont have a repo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment