RedisBungee/pom.xml

46 lines
1.6 KiB
XML
Raw 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>
<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>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
2013-11-14 01:11:10 +00:00
</plugin>
<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>
<modules>
<module>RedisBungee-API</module>
<module>RedisBungee-Bungee</module>
<module>RedisBungee-Velocity</module>
</modules>
2017-03-10 20:32:31 +00:00
</project>