raycons
raycons

Reputation: 825

Gradle - Pulling resources from github rep

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

Answers (1)

RaGe
RaGe

Reputation: 23637

Jitpack does not currently support ant projects. See here.

Upvotes: 1

Related Questions