Note: This project is undergoing a major refactoring. Please switch to the 3.6-dev branch for the new API.
Ultra-customizable planting experience for Minecraft servers
https://polymart.org/resource/customcrops.2625
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.
Import the project and execute gradle build action.
<repositories>
<repository>
<id>jitpack</id>
<url>https://jitpack.io/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.Xiao-MoMi</groupId>
<artifactId>Custom-Crops</artifactId>
<version>{LATEST}</version>
<scope>provided</scope>
</dependency>
</dependencies>
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
compileOnly 'com.github.Xiao-MoMi:Custom-Crops:{LATEST}'
}
repositories {
maven("https://jitpack.io/")
}
dependencies {
compileOnly("com.github.Xiao-MoMi:Custom-Crops:{LATEST}")
}