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>
|
2022-04-13 13:14:08 +00:00
|
|
|
<packaging>pom</packaging>
|
2022-05-25 08:50:26 +00:00
|
|
|
<version>0.7.1-SNAPSHOT</version>
|
2013-09-29 20:16:47 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2021-01-07 20:09:43 +00:00
|
|
|
<configuration>
|
|
|
|
<source>8</source>
|
2022-04-13 13:14:08 +00:00
|
|
|
<target>8</target>
|
2021-01-07 20:09:43 +00:00
|
|
|
</configuration>
|
2013-11-14 01:11:10 +00:00
|
|
|
</plugin>
|
2013-09-29 20:16:47 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2022-04-13 13:14:08 +00:00
|
|
|
<modules>
|
|
|
|
<module>RedisBungee-API</module>
|
|
|
|
<module>RedisBungee-Bungee</module>
|
2022-04-14 11:59:02 +00:00
|
|
|
<module>RedisBungee-BungeeEvents</module>
|
2022-04-13 13:14:08 +00:00
|
|
|
</modules>
|
|
|
|
|
2017-03-10 20:32:31 +00:00
|
|
|
</project>
|