2013-03-02 10:01:33 +01:00
|
|
|
|
|
|
|
<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>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-parent</artifactId>
|
2023-08-07 00:01:47 +02:00
|
|
|
<version>1.20-R0.2-SNAPSHOT</version>
|
2013-03-02 10:01:33 +01:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-config</artifactId>
|
2023-08-07 00:01:47 +02:00
|
|
|
<version>1.20-R0.2-SNAPSHOT</version>
|
2013-03-02 10:01:33 +01:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>BungeeCord-Config</name>
|
|
|
|
<description>Generic java configuration API intended for use with BungeeCord</description>
|
2013-09-24 02:09:55 +02:00
|
|
|
|
2013-03-07 08:17:49 +01:00
|
|
|
<dependencies>
|
2020-02-03 03:25:47 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
2023-09-17 00:01:45 +02:00
|
|
|
<version>2.10.1</version>
|
2020-02-03 03:25:47 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2013-03-07 08:17:49 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
2023-09-17 00:01:45 +02:00
|
|
|
<version>2.2</version>
|
2013-09-23 02:28:30 +02:00
|
|
|
<scope>compile</scope>
|
2020-02-03 03:25:47 +01:00
|
|
|
<optional>true</optional>
|
2013-03-07 08:17:49 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2013-03-02 10:01:33 +01:00
|
|
|
</project>
|