2023-05-19 13:10:36 +07: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>com.mineplex</groupId>
|
|
|
|
<artifactId>mineplex-plugin</artifactId>
|
|
|
|
<version>dev-SNAPSHOT</version>
|
|
|
|
<relativePath>../plugin.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<name>Mineplexer</name>
|
|
|
|
<artifactId>mineplex-bungee-mineplexer</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>mineplex-cache</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>mineplex-serverdata</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.md-5</groupId>
|
2023-05-20 11:35:03 +07:00
|
|
|
<artifactId>bungeecord-api</artifactId>
|
2023-05-30 16:55:23 +07:00
|
|
|
<version>1.16-R0.4</version>
|
2023-05-19 13:10:36 +07:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|