Install JDK 17 & 21. \ Start terminal and change directory to the project folder.\ Execute ".\gradlew build" and get the artifact under /target folder
Import the project and execute gradle build action. \ Get the artifact under /target folder
Polymart: https://polymart.org/resource/customnameplates.2543 \ Afdian: https://afdian.com/@xiaomomi
<repositories>
<repository>
<id>jitpack</id>
<url>https://jitpack.io/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.Xiao-MoMi</groupId>
<artifactId>Custom-Nameplates</artifactId>
<version>{VERSION}</version>
<scope>provided</scope>
</dependency>
</dependencies>
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
compileOnly 'com.github.Xiao-MoMi:Custom-Nameplates:{VERSION}'
}
repositories {
maven("https://jitpack.io/")
}
dependencies {
compileOnly("com.github.Xiao-MoMi:Custom-Nameplates:{VERSION}")
}