slack-api
slack-api copied to clipboard
incorrect artifact version
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
Yeah. I found this issue too. Will try to raise a pr to fix the readme
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'
}