# Custom-Fishing

[](https://jitpack.io/#Xiao-MoMi/Custom-Fishing)
[](https://github.com/Xiao-MoMi/Custom-Fishing/)




CustomFishing is a Paper plugin that provides minigames and a powerful condition & action system for fishing.
With the new concept of weight system, CustomFishing brings unlimited customization possibilities and best performance.
## How to build
#### Command Line
Install JDK 17 & 21. \
Start terminal and change directory to the project folder.\
Execute ".\gradlew build" and get the artifact under /target folder
#### IDE
Import the project and execute gradle build action. \
Get the artifact under /target folder
## Support the developer
Polymart: https://polymart.org/resource/customfishing.2723 \
Afdian: https://afdian.net/@xiaomomi
## CustomFishing API
### Maven
```html
jitpack
https://jitpack.io/
```
```html
com.github.Xiao-MoMi
Custom-Fishing
{VERSION}
provided
```
### Gradle (Groovy)
```groovy
repositories {
maven { url 'https://jitpack.io' }
}
```
```groovy
dependencies {
compileOnly 'com.github.Xiao-MoMi:Custom-Fishing:{VERSION}'
}
```
### Gradle (Kotlin)
```kotlin
repositories {
maven("https://jitpack.io/")
}
```
```kotlin
dependencies {
compileOnly("com.github.Xiao-MoMi:Custom-Fishing:{VERSION}")
}
```