Reputation: 825
I am trying to pull the following github rep as a dependency: https://github.com/bft-smart/library
this is my gradle file:
group '1.0'
version '0.1-Setup'
apply plugin: 'java'
sourceCompatibility = 1.5
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile 'com.github.bft-smart:library:master-SNAPSHOT'
}
But I get: Unable to resolve com.github.bft-smart:library:master-SNAPSHOT.
Thanks already.
Upvotes: 1
Views: 104