|
1 | 1 | # challonge-java |
2 | 2 |
|
3 | | -[](https://circleci.com/gh/stefangeyer/challonge-java) |
4 | | -[](https://www.codacy.com/app/stefangeyer/challonge-java?utm_source=github.com&utm_medium=referral&utm_content=stefangeyer/challonge-java&utm_campaign=Badge_Grade) |
5 | | -[](https://codecov.io/gh/stefangeyer/challonge-java) |
6 | | -[](https://maven-badges.herokuapp.com/maven-central/at.stefangeyer.challonge/core) |
| 3 | +### This is a forked version of https://github.com/stefangeyer/challonge-java |
| 4 | +[](https://jitpack.io/#Inkception/challonge-java) |
7 | 5 |
|
8 | 6 | This library binds the [CHALLONGE! REST API](http://api.challonge.com/v1) calls for Java and any other JVM language. |
9 | 7 |
|
10 | 8 | Released under the MIT license. |
11 | 9 |
|
12 | | -## gradle |
13 | | - |
| 10 | +## Gradle |
14 | 11 | ```groovy |
15 | | -implementation group: 'at.stefangeyer.challonge', name: 'core', version: '2.1.0' |
16 | | -``` |
| 12 | +repositories { |
| 13 | + maven { url 'https://jitpack.io' } |
| 14 | +} |
17 | 15 |
|
18 | | -## maven |
| 16 | +implementation 'com.github.Inkception:challonge-java:core:%VERSION%' |
| 17 | +``` |
19 | 18 |
|
| 19 | +## Maven |
20 | 20 | ```xml |
| 21 | +<repository> |
| 22 | + <id>jitpack.io</id> |
| 23 | + <url>https://jitpack.io</url> |
| 24 | +</repository> |
| 25 | + |
21 | 26 | <dependency> |
22 | | - <groupId>at.stefangeyer.challonge</groupId> |
| 27 | + <groupId>com.github.Inkception.challonge-java</groupId> |
23 | 28 | <artifactId>core</artifactId> |
24 | | - <version>2.1.0</version> |
| 29 | + <version>%VERSION%</version> |
25 | 30 | </dependency> |
26 | 31 | ``` |
27 | 32 |
|
28 | | -## examples |
29 | | - |
| 33 | +## Examples |
30 | 34 | Check the [wiki](https://github.com/stefangeyer/challonge-java/wiki) for instructions on how get started. |
31 | 35 |
|
32 | | -## modules |
33 | | - |
| 36 | +## Modules |
34 | 37 | This project is split up in the modules core, rest and serializers. While core contains |
35 | 38 | the main functionality and interfaces for the rest and serializer package, the latter contains all available |
36 | 39 | implementations of their respective interfaces. Rest and serializers contain all implementations of the core module's interfaces `Serializer` |
37 | 40 | and `RestClient`. Additional implementations may follow in the future. |
38 | 41 |
|
39 | | -### serializers |
40 | | - |
| 42 | +### Serializers |
41 | 43 | Currently, there are the following serializer implementations: |
42 | 44 | - [Gson](https://github.com/google/gson) |
43 | 45 |
|
44 | | -### rest clients |
45 | | - |
| 46 | +### Rest Clients |
46 | 47 | Currently, there are the following rest client implementations: |
47 | | -- [Retrofit](https://github.com/square/retrofit) |
| 48 | +- [Retrofit](https://github.com/square/retrofit) |
0 commit comments