9
0
mirror of https://github.com/Xiao-MoMi/Custom-Fishing.git synced 2025-12-19 15:09:24 +00:00

Update README.md

This commit is contained in:
XiaoMoMi
2023-09-12 22:59:43 +08:00
parent bda02f848a
commit 3ce6e0430e

View File

@@ -29,4 +29,39 @@ If you are using a proxy, configurate the proxy in gradle.properties. Otherwise
## Support the developer
Polymart: https://polymart.org/resource/customfishing.2723 \
Afdian: https://afdian.net/@xiaomomi
Afdian: https://afdian.net/@xiaomomi
## Use CustomFishing API
### Maven
```
<repositories>
<repository>
<id>jitpack</id>
<url>https://jitpack.io/</url>
</repository>
</repositories>
```
```
<dependencies>
<dependency>
<groupId>com.github.Xiao-MoMi</groupId>
<artifactId>Custom-Fishing</artifactId>
<version>{LATEST}</version>
<scope>provided</scope>
</dependency>
</dependencies>
```
### Gradle
```
repositories {
maven { url 'https://jitpack.io' }
}
```
```
dependencies {
compileOnly 'com.github.Xiao-MoMi:Custom-Fishing:{LATEST}'
}
```