You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
2.8 KiB
112 lines
2.8 KiB
<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> |
|
<groupId>org.dynmap</groupId> |
|
<artifactId>Dynmap-WorldGuard</artifactId> |
|
|
|
<build> |
|
<resources> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<filtering>true</filtering> |
|
<includes> |
|
<include>*.yml</include> |
|
<include>*.txt</include> |
|
</includes> |
|
</resource> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<filtering>false</filtering> |
|
<excludes> |
|
<exclude>*.yml</exclude> |
|
<exclude>*.txt</exclude> |
|
</excludes> |
|
</resource> |
|
</resources> |
|
|
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>2.0.2</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>3.2.1</version> |
|
<executions> |
|
<execution> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>shade</goal> |
|
</goals> |
|
<configuration> |
|
<artifactSet> |
|
<includes> |
|
<include>org.dynmap:Dynmap-WorldGuard</include> |
|
</includes> |
|
</artifactSet> |
|
<relocations> |
|
<relocation> |
|
<pattern>com.sk89q.squirrelid</pattern> |
|
<shadedPattern>com.sk89q.worldguard.util.profile</shadedPattern> |
|
</relocation> |
|
</relocations> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
<repositories> |
|
<repository> |
|
<releases> |
|
</releases> |
|
<snapshots> |
|
</snapshots> |
|
<id>dynmap-repo</id> |
|
<url>http://repo.mikeprimm.com/</url> |
|
</repository> |
|
<repository> |
|
<releases> |
|
</releases> |
|
<snapshots> |
|
</snapshots> |
|
<id>sk89q-repo</id> |
|
<url>http://maven.sk89q.com/repo/</url> |
|
</repository> |
|
</repositories> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>us.dynmap</groupId> |
|
<artifactId>dynmap-api</artifactId> |
|
<version>3.0-SNAPSHOT</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.bukkit</groupId> |
|
<artifactId>bukkit</artifactId> |
|
<version>1.7.10-R0.1-SNAPSHOT</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.sk89q.worldguard</groupId> |
|
<artifactId>worldguard-bukkit</artifactId> |
|
<version>7.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.sk89q.worldedit</groupId> |
|
<artifactId>worldedit-bukkit</artifactId> |
|
<version>7.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.sk89q</groupId> |
|
<artifactId>squirrelid</artifactId> |
|
<version>0.2.0</version> |
|
</dependency> |
|
</dependencies> |
|
<version>1.2-SNAPSHOT</version> |
|
</project>
|
|
|