mirror of
https://github.com/Xiao-MoMi/Custom-Nameplates.git
synced 2025-12-19 15:09:23 +00:00
2.0 KiB
2.0 KiB
Custom-Nameplates
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
How to Contribute
Translations
Clone this project and create a new language file in the /backend/src/main/resources/translations directory.
Once your changes are ready, open a pull request for review. We appreciate your works!
Support the Developer
Polymart: https://polymart.org/resource/customnameplates.2543/
BuiltByBit: https://builtbybit.com/resources/customnameplates.36359/
Afdian: https://afdian.com/@xiaomomi/
CustomNameplates API
Maven
<repositories>
<repository>
<id>xiaomomi repo</id>
<url>https://repo.momirealms.net/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>net.momirealms</groupId>
<artifactId>custom-nameplates</artifactId>
<version>3.0.19</version>
</dependency>
</dependencies>
Gradle (Kotlin)
repositories {
maven("https://repo.momirealms.net/")
}
dependencies {
compileOnly("net.momirealms:custom-nameplates:3.0.19")
}