ProjectAres/Commons/bukkit/pom.xml

109 lines
3.4 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<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>
<artifactId>commons</artifactId>
<groupId>tc.oc</groupId>
<relativePath>../pom.xml</relativePath>
<version>1.12.0</version>
</parent>
<artifactId>commons-bukkit</artifactId>
<properties>
<!-- The prefix to use when logging to the console -->
<plugin.prefix>Commons</plugin.prefix>
<!-- The main class -->
<plugin.mainClass>tc.oc.commons.bukkit.CommonsBukkitManifest</plugin.mainClass>
</properties>
<dependencies>
<!-- Prevent Bukkit from hijacking Guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<!-- Our stuff -->
<dependency>
<groupId>tc.oc</groupId>
<artifactId>commons-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>tc.oc</groupId>
<artifactId>api-bukkit</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.rmsy.Channels</groupId>
<artifactId>Channels</artifactId>
<version>1.12.2.0</version>
<exclusions>
<exclusion>
<groupId>tc.oc</groupId>
<artifactId>sportbukkit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>me.anxuiz</groupId>
<artifactId>bukkit-settings</artifactId>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>tc.oc:commons-core</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>2.1.0</version>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>