diff options
| author | Pinapelz <yukais@pinapelz.com> | 2023-11-21 19:54:25 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2023-11-21 19:54:25 -0800 |
| commit | 91b9eb3dbf6166474aa20f3ce0b2cc1b1fe0d958 (patch) | |
| tree | 26a7cc51ba80b0478b670c16e4aaccc17d44ef88 | |
| parent | 27b297a6870920df1ea56be6d3e784cb4cb0cee0 (diff) | |
| parent | 9b399633df21fe0dd729d6ba163aa40f7d3decf9 (diff) | |
Merge remote-tracking branch 'origin/main'
| -rw-r--r-- | README.md | 27 |
1 files changed, 11 insertions, 16 deletions
@@ -1,5 +1,7 @@ # JHolodex [](https://github.com/pinapelz/JHolodex/actions/workflows/maven.yml) + + A Java wrapper for the [Holodex API](https://docs.holodex.net/#section/Holodex-API-Documentation). @@ -10,31 +12,24 @@ Please check the [Holodex API](https://holodex.stoplight.io/) for more informati [Holodex License](https://docs.holodex.net/#section/LICENSE) ## Download - -[](https://jitpack.io/#pinapelz/JHolodex) + + ### Maven ```xml <dependency> - <groupId>com.github.pinapelz</groupId> - <artifactId>JHolodex</artifactId> - <version>VERSION_HERE</version> + <groupId>com.pinapelz</groupId> + <artifactId>jholodex</artifactId> + <version>VERSION</version> </dependency> ``` ### Gradle + ```java -allprojects { - repositories { - ... - maven { url 'https://jitpack.io' } - } -} - -dependencies { - implementation 'com.github.pinapelz:JHolodex:Tag' -} +implementation group: 'com.pinapelz', name: 'jholodex', version: '1.4' ``` -#### Add [JitPack](https://jitpack.io/) to your list of repositories + +Alternatively use Jitpack for pre-releases |
