Skip to content
This repository was archived by the owner on Mar 14, 2025. It is now read-only.

Commit ebf33ae

Browse files
authored
Update README.md
1 parent 7d541fd commit ebf33ae

1 file changed

Lines changed: 21 additions & 20 deletions

File tree

README.md

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,48 @@
11
# challonge-java
22

3-
[![CircleCI](https://circleci.com/gh/stefangeyer/challonge-java.svg?style=svg)](https://circleci.com/gh/stefangeyer/challonge-java)
4-
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/47dc0fcd548d40eb92c2c0f32272b194)](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-
[![codecov](https://codecov.io/gh/stefangeyer/challonge-java/branch/master/graph/badge.svg)](https://codecov.io/gh/stefangeyer/challonge-java)
6-
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/at.stefangeyer.challonge/core/badge.svg)](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/v/Inkception/challonge-java.svg)](https://jitpack.io/#Inkception/challonge-java)
75

86
This library binds the [CHALLONGE! REST API](http://api.challonge.com/v1) calls for Java and any other JVM language.
97

108
Released under the MIT license.
119

12-
## gradle
13-
10+
## Gradle
1411
```groovy
15-
implementation group: 'at.stefangeyer.challonge', name: 'core', version: '2.1.0'
16-
```
12+
repositories {
13+
maven { url 'https://jitpack.io' }
14+
}
1715
18-
## maven
16+
implementation 'com.github.Inkception:challonge-java:core:%VERSION%'
17+
```
1918

19+
## Maven
2020
```xml
21+
<repository>
22+
<id>jitpack.io</id>
23+
<url>https://jitpack.io</url>
24+
</repository
25+
2126
<dependency>
22-
<groupId>at.stefangeyer.challonge</groupId>
27+
<groupId>com.github.Inkception.challonge-java</groupId>
2328
<artifactId>core</artifactId>
24-
<version>2.1.0</version>
29+
<version>%VERSION%</version>
2530
</dependency>
2631
```
2732

28-
## examples
29-
33+
## Examples
3034
Check the [wiki](https://github.com/stefangeyer/challonge-java/wiki) for instructions on how get started.
3135

32-
## modules
33-
36+
## Modules
3437
This project is split up in the modules core, rest and serializers. While core contains
3538
the main functionality and interfaces for the rest and serializer package, the latter contains all available
3639
implementations of their respective interfaces. Rest and serializers contain all implementations of the core module's interfaces `Serializer`
3740
and `RestClient`. Additional implementations may follow in the future.
3841

39-
### serializers
40-
42+
### Serializers
4143
Currently, there are the following serializer implementations:
4244
- [Gson](https://github.com/google/gson)
4345

44-
### rest clients
45-
46+
### Rest Clients
4647
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

Comments
 (0)