2016-09-23 19:49:59 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
2016-09-25 21:05:58 +02:00
|
|
|
<artifactId>viaversion-parent</artifactId>
|
2016-09-23 19:49:59 +02:00
|
|
|
<groupId>us.myles</groupId>
|
2020-09-07 15:11:11 +02:00
|
|
|
<version>3.1.1-1.16.3-rc1</version>
|
2016-09-23 19:49:59 +02:00
|
|
|
</parent>
|
2016-09-25 15:39:37 +02:00
|
|
|
|
2016-09-23 19:49:59 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>viaversion-common</artifactId>
|
2016-09-30 01:34:16 +02:00
|
|
|
<dependencies>
|
|
|
|
<!-- Snake YAML -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
2017-05-14 14:34:51 +02:00
|
|
|
<version>1.18</version>
|
2018-09-30 15:30:34 +02:00
|
|
|
<scope>compile</scope> <!-- Velocity doesn't have snakeyaml -->
|
2016-09-30 01:34:16 +02:00
|
|
|
</dependency>
|
2020-06-08 12:27:34 +02:00
|
|
|
|
2020-06-08 22:23:24 +02:00
|
|
|
<!-- FastUtil for performance increases -->
|
2020-06-08 12:27:34 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>it.unimi.dsi</groupId>
|
|
|
|
<artifactId>fastutil</artifactId>
|
|
|
|
<version>8.3.1</version>
|
2020-06-08 22:23:24 +02:00
|
|
|
<scope>compile</scope>
|
2020-06-08 12:27:34 +02:00
|
|
|
</dependency>
|
2016-09-30 01:34:16 +02:00
|
|
|
</dependencies>
|
2019-10-30 18:24:22 +01:00
|
|
|
</project>
|