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-07-06 19:04:09 +00:00
|
|
|
<version>0.8.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>
|
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>
|
2022-07-15 05:57:30 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>pl.project13.maven</groupId>
|
|
|
|
<artifactId>git-commit-id-plugin</artifactId>
|
|
|
|
<version>4.9.10</version>
|
|
|
|
<configuration>
|
|
|
|
<failOnNoGitDirectory>false</failOnNoGitDirectory>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>get-the-git-infos</id>
|
|
|
|
<goals>
|
|
|
|
<goal>revision</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-09-29 20:16:47 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2022-04-13 13:14:08 +00:00
|
|
|
<modules>
|
2022-07-30 18:36:29 +00:00
|
|
|
<!-- Main modules -->
|
2022-04-13 13:14:08 +00:00
|
|
|
<module>RedisBungee-API</module>
|
|
|
|
<module>RedisBungee-Bungee</module>
|
2022-07-06 22:24:08 +00:00
|
|
|
<module>RedisBungee-Velocity</module>
|
2022-07-30 18:36:29 +00:00
|
|
|
</modules>
|
2022-04-13 13:14:08 +00:00
|
|
|
|
2017-03-10 20:32:31 +00:00
|
|
|
</project>
|