-
Notifications
You must be signed in to change notification settings - Fork 0
Install
UltraDev edited this page Sep 30, 2021
·
2 revisions
Serializer can run without any additional dependencies, however other libraries can be used for additional features.
If you haven't already, add the UltraGrav repository to your repositories:
<repositories>
<repository>
<id>UltraGrav</id>
<url>https://mvn.ultragrav.net</url>
</repository>
</repositories>Add the latest version of Serializer to your dependency list:
<dependencies>
<dependency>
<groupId>net.ultragrav</groupId>
<artifactId>Serializer</artifactId>
<version>1.2.1</version>
</dependency>
</dependencies>If you wish to use ZSTD for compression, simply add it to your dependencies:
<dependencies>
<dependency>
<groupId>com.github.luben</groupId>
<artifactId>zstd-jni</artifactId>
<version>1.4.5-6</version>
<scope>provided</scope>
</dependency>
</dependencies>