1
0
Files
mineplex-crepe/Plugins[Modified]/Mineplex.ServerData/pom.xml

45 lines
1.4 KiB
XML
Raw Normal View History

2021-08-19 16:35:32 +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-parent</artifactId>
<version>dev-SNAPSHOT</version>
</parent>
<artifactId>mineplex-serverdata</artifactId>
<dependencies>
<dependency>
2023-05-20 11:35:03 +07:00
<groupId>com.mineplex</groupId>
<artifactId>spigot</artifactId>
<scope>provided</scope>
2021-08-19 16:35:32 +07:00
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
</dependency>
<dependency>
<groupId>org.jooq</groupId>
<artifactId>jooq</artifactId>
<version>3.5.2</version>
</dependency>
2023-05-20 11:35:03 +07:00
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>23.0</version>
2023-05-20 11:35:03 +07:00
<scope>compile</scope>
</dependency>
2021-08-19 16:35:32 +07:00
</dependencies>
</project>