A Holograms Library for Spigot Development.
- Platform
- Replace
{platform}
below withcore
. If you would like to use gson to save your holograms, you can also add thegson
platform, which has a built in GsonBuilder which will nicely handle Holograms!
- Replace
- Version
- Replace
{version}
with the latest above.
- Replace
- (Dont forget to use your favorite shading tool!)
First, you need to add the repository. The public repository pulls both snapshots and releases.
repository {
//...
maven { url 'https://repo.jaims.dev/repository/maven-public/' }
}
And then you simply provide the ModuCore API dependency:
dependencies {
//...
implementation "dev.jaims.hololib:{platform}:{version}"
}
First, you need to add the repository. The public repository will pull both snapshots and releases.
<repository>
<id>jaims-public</id>
<url>https://repo.jaims.dev/repository/maven-public/</url>
</repository>
And then you need to add the ModuCore API dependency:
<dependency>
<groupId>dev.jaims.hololib</groupId>
<artifactId>{platform}</artifactId>
<version>{version}</version>
</dependency>