RedisBungee/pom.xml

64 lines
2.0 KiB
XML
Raw Permalink Normal View History

2013-09-29 20:16:47 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2014-09-21 17:56:46 +00:00
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
2013-09-29 20:16:47 +00:00
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>
2013-10-13 20:06:45 +00:00
<groupId>com.imaginarycode.minecraft</groupId>
2013-09-29 20:16:47 +00:00
<artifactId>RedisBungee</artifactId>
<packaging>pom</packaging>
2022-04-13 08:50:58 +00:00
<version>0.7.0-SNAPSHOT</version>
2013-09-29 20:16:47 +00:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
2013-11-14 01:11:10 +00:00
</plugin>
2013-09-29 20:16:47 +00:00
</plugins>
</build>
<modules>
<module>RedisBungee-API</module>
<module>RedisBungee-Bungee</module>
2022-04-14 11:59:02 +00:00
<module>RedisBungee-BungeeEvents</module>
</modules>
2013-09-29 20:16:47 +00:00
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.1-jre</version>
<scope>compile</scope>
</dependency>
2013-09-29 20:16:47 +00:00
<dependency>
<groupId>redis.clients</groupId>
2013-09-29 20:16:47 +00:00
<artifactId>jedis</artifactId>
2022-04-13 08:50:58 +00:00
<version>4.2.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
2022-04-13 08:50:58 +00:00
<version>2.11.1</version>
<scope>compile</scope>
2013-09-29 20:16:47 +00:00
</dependency>
2015-01-25 05:17:52 +00:00
<dependency>
<groupId>com.squareup.okhttp</groupId>
<artifactId>okhttp</artifactId>
<version>2.7.5</version>
2015-01-25 05:17:52 +00:00
<scope>compile</scope>
</dependency>
2015-02-04 15:02:30 +00:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
2021-07-29 22:00:32 +00:00
<version>4.13.2</version>
2015-02-04 15:02:30 +00:00
<scope>test</scope>
</dependency>
2013-09-29 20:16:47 +00:00
</dependencies>
2017-03-10 20:32:31 +00:00
</project>