2019-07-08 19:55:14 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.geysermc</groupId>
|
|
|
|
<artifactId>geyser-parent</artifactId>
|
2021-09-10 20:10:56 +02:00
|
|
|
<version>1.4.3-SNAPSHOT</version>
|
2019-07-08 19:55:14 +02:00
|
|
|
</parent>
|
|
|
|
<artifactId>common</artifactId>
|
2020-11-17 18:03:12 +01:00
|
|
|
|
2021-11-07 15:41:08 +01:00
|
|
|
<!-- Floodgate is still targeting Java 8 -->
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
2019-07-08 19:55:14 +02:00
|
|
|
<dependencies>
|
2020-12-10 22:57:48 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.geysermc.cumulus</groupId>
|
|
|
|
<artifactId>cumulus</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2019-07-08 19:55:14 +02:00
|
|
|
<dependency>
|
2019-12-21 18:35:48 +01:00
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
2020-12-10 22:57:48 +01:00
|
|
|
<version>2.8.6</version>
|
2019-07-08 19:55:14 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|