Skip to content

Instantly share code, notes, and snippets.

@programingjd
Last active December 14, 2015 12:49
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 programingjd/55b8570d4ab5aab34925 to your computer and use it in GitHub Desktop.
Save programingjd/55b8570d4ab5aab34925 to your computer and use it in GitHub Desktop.
Gradle / Bintray dependency (without jcenter)
repositories {
jcenter()
maven { url 'http://dl.bintray.com/programingjd/maven' }
}
...
dependencies {
compile('info.jdavid.ok.json:okjson:2.6.1') {
artifact {
name = 'okjson'
extension = 'jar'
type = 'jar'
url = 'http://dl.bintray.com/programingjd/maven/info/jdavid/ok/json/okjson/2.6.1'
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment