slack-api icon indicating copy to clipboard operation
slack-api copied to clipboard

incorrect artifact version

Open abonstu opened this issue 7 years ago • 2 comments

github describes the artifact version as v1.7.0.RELEASE jitpack.io lists the artifact version as 1.7.0.RELEASE

https://jitpack.io/#com.github.allbegray/slack-api

abonstu avatar Dec 21 '18 04:12 abonstu

Yeah. I found this issue too. Will try to raise a pr to fix the readme

netwolfuk avatar May 17 '19 22:05 netwolfuk

try the following in your gradle build using "master-SNAPSHOT" instead

allprojects {
    repositories {
        mavenCentral()
        maven { url 'https://jitpack.io' }
    }
}

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'
    implementation 'com.github.allbegray:slack-api:master-SNAPSHOT'
}

rubabuddin avatar May 19 '19 08:05 rubabuddin