Skip to content

Instantly share code, notes, and snippets.

@sgdc3
Last active June 3, 2019 15:37
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 sgdc3/e14c406790dca03c44ed0b11fafe9b7b to your computer and use it in GitHub Desktop.
Save sgdc3/e14c406790dca03c44ed0b11fafe9b7b to your computer and use it in GitHub Desktop.
Deploy for codemc
publishing {
repositories {
maven {
credentials {
username = project.getProperty('deployUser')
password = project.getProperty('deployPass')
}
name = "codemc"
url = version.endsWith('SNAPSHOT') ? 'https://repo.codemc.org/repository/maven-snapshots/' :
'https://repo.codemc.org/repository/maven-releases/'
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment