Skip to content

Xiao-MoMi/Custom-Nameplates

Folders and files

NameName
Last commit message
Last commit date

Latest commit

28ccd91 · Jan 25, 2025
Jan 25, 2025
Jan 25, 2025
Dec 21, 2024
Jan 9, 2025
Jan 25, 2025
Jun 21, 2022
Nov 19, 2024
Jul 23, 2022
Nov 10, 2024
Nov 19, 2024
Jan 16, 2025
Jan 17, 2024
Jan 17, 2024
Oct 6, 2024
Nov 19, 2024

Repository files navigation

Custom-Nameplates

CodeFactor Grade Gitbook Scc Count Badge Code Size bStats Servers bStats Players GitHub

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 /common/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>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>

Gradle (Groovy)

repositories {
    maven { url 'https://jitpack.io' }
}
dependencies {
    compileOnly 'com.github.Xiao-MoMi:Custom-Nameplates:{VERSION}'
}

Gradle (Kotlin)

repositories {
    maven("https://jitpack.io/")
}
dependencies {
    compileOnly("com.github.Xiao-MoMi:Custom-Nameplates:{VERSION}")
}