Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,18 @@ This library and the 2 above mentioned dependencies are required. A JAR with all

* [Twitch API Wrapper Download](https://github.com/urgrue/Java-Twitch-Api-Wrapper/releases/tag/0.3)

If you use Gradle, you can also add this project as a dependency via [jitpack.io](https://jitpack.io/#urgrue/Java-Twitch-Api-Wrapper):

```groovy
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
compile "com.github.urgrue:Java-Twitch-Api-Wrapper:0.3.1"
}
```


## Roadmap

* Android and Gradle support.
* Android support.
16 changes: 16 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
group 'com.mb3364.twitch'
apply plugin: 'java'
sourceCompatibility = 1.7

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

dependencies {
compile "com.fasterxml.jackson.core:jackson-databind:${project.jackson_version}"
compile "com.github.urgrue:java-async-http:${project.async_http_client_version}"
testCompile "junit:junit:${project.junit_version}"
}
4 changes: 4 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
version=0.3.1
async_http_client_version=2.1.2
jackson_version=2.4.5
junit_version=4.12
70 changes: 0 additions & 70 deletions pom.xml

This file was deleted.