This is a modification of decenthologram with ONLY the bare minimum for text holograms to work. This is made to be included within other plugins. If correctly reloacted to a different package name, it should be compatible with the real plugin.
In this version, no commans, no events, no head, entity, or clickable holograms.
Building DecentHolograms is very simple. All you need is JDK 8+, Gradle, Git and an IDE or Command Line.
- Clone the project to your machine using Git.
- Open the project using your IDE or open a command line at the projects' location.
- Run
gradle clean shadowJarand DecentHolograms will build. - You can find the jar at
./plugin/build/libs/DecentHolograms-VERSION.jar
Replace
VERSIONwith the current version of DecentHolograms. (Latest release)
Maven
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories><dependencies>
<dependency>
<groupId>com.github.Guarmanda</groupId>
<artifactId>decentholograms</artifactId>
<version>2.9.8</version>
</dependency>
</dependencies>Gradle
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
compileOnly 'com.github.decentsoftware-eu:decentholograms:VERSION'
}