MassiveCore/pom.xml

113 lines
3.2 KiB
XML
Raw Normal View History

2014-09-12 22:41:59 +02:00
<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">
2014-09-12 22:47:42 +02:00
<modelVersion>4.0.0</modelVersion>
<groupId>com.massivecraft</groupId>
2014-09-12 22:47:42 +02:00
<artifactId>MassiveCore</artifactId>
<name>MassiveCore</name>
<version>7.5.0</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<defaultGoal>clean package install</defaultGoal>
<finalName>MassiveCore</finalName>
2014-09-12 23:52:19 +02:00
<sourceDirectory>${basedir}/src/main/java/</sourceDirectory>
2014-09-12 22:47:42 +02:00
<resources>
<resource>
<targetPath>.</targetPath>
2014-09-12 23:52:19 +02:00
<directory>${basedir}/src/main/resources/</directory>
2014-09-12 22:47:42 +02:00
<filtering>true</filtering>
<includes>
<include>*.yml</include>
<include>*.md</include>
<include>*.txt</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
2014-09-12 23:11:19 +02:00
<configuration>
<artifactSet>
<includes>
<include>com.google.code.gson:gson</include>
2014-09-12 23:36:17 +02:00
<include>org.mongodb:mongo-java-driver</include>
2014-09-12 23:11:19 +02:00
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>com.google.gson</pattern>
<shadedPattern>com.massivecraft.massivecore.xlib.gson</shadedPattern>
</relocation>
2014-09-12 23:36:17 +02:00
<relocation>
<pattern>com.mongodb</pattern>
<shadedPattern>com.massivecraft.massivecore.xlib.mongodb</shadedPattern>
</relocation>
<relocation>
<pattern>org.bson</pattern>
<shadedPattern>com.massivecraft.massivecore.xlib.bson</shadedPattern>
</relocation>
2014-09-12 23:11:19 +02:00
</relocations>
</configuration>
</execution>
</executions>
</plugin>
2014-09-12 22:47:42 +02:00
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.9-R0.2</version>
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>Vault</artifactId>
<version>1.4.1</version>
</dependency>
2014-09-12 23:11:19 +02:00
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.2.4</version>
</dependency>
2014-09-12 23:36:17 +02:00
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>2.12.3</version>
</dependency>
2014-09-12 22:47:42 +02:00
</dependencies>
<repositories>
<repository>
<id>bukkit-repo</id>
<url>http://repo.bukkit.org/content/groups/public/</url>
</repository>
<repository>
<id>vault-repo</id>
<url>http://nexus.theyeticave.net/content/repositories/pub_releases</url>
</repository>
</repositories>
</project>