# Custom-Crops




[](https://jitpack.io/#Xiao-MoMi/Custom-Crops)
Ultra-customizable planting experience for Minecraft servers
### Support the developer
https://afdian.net/@xiaomomi
https://polymart.org/resource/customcrops.2625
## How to build
### Windows
#### Command Line
Install JDK 17 and set the JDK installation path to JAVA_HOME as an environment variable.\
Start powershell and change directory to the project folder.\
Execute ".\gradlew build" and get the jar at /target/CustomCrops-plugin-version.jar.
#### IDE
Import the project and execute gradle build action.
## Use CustomCrops API
### Maven
```
jitpack
https://jitpack.io/
```
```
com.github.Xiao-MoMi
Custom-Crops
{LATEST}
provided
```
### Gradle (Groovy)
```
repositories {
maven { url 'https://jitpack.io' }
}
```
```
dependencies {
compileOnly 'com.github.Xiao-MoMi:Custom-Crops:{LATEST}'
}
```
### Gradle (Kotlin)
```
repositories {
maven("https://jitpack.io/")
}
```
```
dependencies {
compileOnly("com.github.Xiao-MoMi:Custom-Crops:{LATEST}")
}
```