mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-05 18:20:18 +01:00
143 lines
3.8 KiB
XML
143 lines
3.8 KiB
XML
<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</artifactId>
|
|
<name>dynmap</name>
|
|
<properties>
|
|
<timestamp>${maven.build.timestamp}</timestamp>
|
|
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<BUILD_NUMBER>Dev${timestamp}</BUILD_NUMBER>
|
|
</properties>
|
|
<url>http://github.com/webbukkit/dynmap/</url>
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>https://github.com/webbukkit/dynmap/issues</url>
|
|
</issueManagement>
|
|
<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.6</source>
|
|
<target>1.6</target>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>1.5</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>org.dynmap:dynmap-api:jar:*</include>
|
|
<include>org.dynmap:DynmapCore:jar:*</include>
|
|
</includes>
|
|
</artifactSet>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<repositories>
|
|
<repository>
|
|
<releases>
|
|
</releases>
|
|
<snapshots>
|
|
</snapshots>
|
|
<id>bukkit-repo</id>
|
|
<url>http://repo.bukkit.org/content/repositories/releases/</url>
|
|
</repository>
|
|
<repository>
|
|
<releases>
|
|
</releases>
|
|
<snapshots>
|
|
</snapshots>
|
|
<id>dynmap-repo</id>
|
|
<url>http://repo.mikeprimm.com/</url>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.nijikokun.bukkit</groupId>
|
|
<artifactId>Permissions</artifactId>
|
|
<version>3.1.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>1.4.7-R1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.dynmap</groupId>
|
|
<artifactId>dynmap-api</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.dynmap</groupId>
|
|
<artifactId>DynmapCore</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.getspout</groupId>
|
|
<artifactId>spoutpluginapi</artifactId>
|
|
<version>dev-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.tehkode</groupId>
|
|
<artifactId>PermissionsEx</artifactId>
|
|
<version>1.19.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.bananaco</groupId>
|
|
<artifactId>bPermissions</artifactId>
|
|
<version>2.9.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.platymuus.bukkit.permissions</groupId>
|
|
<artifactId>PermissionsBukkit</artifactId>
|
|
<version>1.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.anjocaido</groupId>
|
|
<artifactId>EssentialsGroupManager</artifactId>
|
|
<version>2.10.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<version>1.9</version>
|
|
</project>
|