2011-01-06 01:50:45 +01: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">
|
2012-01-10 20:39:57 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.dynmap</groupId>
|
|
|
|
<artifactId>dynmap</artifactId>
|
2012-08-27 05:07:56 +02:00
|
|
|
<version>0.90</version>
|
2012-01-10 20:39:57 +01:00
|
|
|
<name>dynmap</name>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<BUILD_NUMBER>dev</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>
|
2011-12-27 17:46:05 +01:00
|
|
|
|
2012-01-18 06:58:11 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>unpack</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals><goal>unpack</goal></goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.dynmap</groupId>
|
|
|
|
<artifactId>DynmapCore</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>bin</classifier>
|
|
|
|
<type>zip</type>
|
|
|
|
<outputDirectory>${project.build.directory}/core</outputDirectory>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
2012-01-10 20:39:57 +01:00
|
|
|
<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>
|
2012-01-18 06:58:11 +01:00
|
|
|
<include>org.dynmap:DynmapCore:jar:*</include>
|
2012-01-10 20:39:57 +01:00
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2011-02-20 06:49:24 +01:00
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
2012-01-10 20:39:57 +01:00
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/assembly/package.xml</descriptor>
|
|
|
|
</descriptors>
|
2011-08-10 15:54:19 +02:00
|
|
|
<!-- Hack for bug in maven-assembly: http://jira.codehaus.org/browse/MASSEMBLY-449 -->
|
|
|
|
<archiverConfig>
|
|
|
|
<fileMode>420</fileMode> <!-- 420(dec) = 644(oct) -->
|
|
|
|
<directoryMode>493</directoryMode> <!-- 493(dec) = 755(oct) -->
|
|
|
|
<defaultDirectoryMode>493</defaultDirectoryMode>
|
|
|
|
</archiverConfig>
|
2011-02-20 06:49:24 +01:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
2012-01-10 20:39:57 +01:00
|
|
|
<execution>
|
|
|
|
<id>build</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
2011-02-20 06:49:24 +01:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
2012-01-10 20:39:57 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2012-01-23 00:02:29 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<releases>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
</snapshots>
|
|
|
|
<id>spout-repo</id>
|
|
|
|
<url>http://repo.spout.org</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2012-01-10 20:39:57 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.nijikokun.bukkit</groupId>
|
|
|
|
<artifactId>Permissions</artifactId>
|
|
|
|
<version>[2.5.4,)</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
2012-07-01 16:10:01 +02:00
|
|
|
<version>[1.2.5-R4.0,1.7)</version>
|
2012-01-10 20:39:57 +01:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.dynmap</groupId>
|
|
|
|
<artifactId>dynmap-api</artifactId>
|
2012-01-18 08:05:02 +01:00
|
|
|
<version>${project.version}</version>
|
2012-01-10 20:39:57 +01:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2011-12-27 17:46:05 +01:00
|
|
|
|
2012-01-18 06:58:11 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.dynmap</groupId>
|
|
|
|
<artifactId>DynmapCore</artifactId>
|
2012-01-18 08:05:02 +01:00
|
|
|
<version>${project.version}</version>
|
2012-01-18 06:58:11 +01:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2012-01-22 23:24:02 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.getspout</groupId>
|
|
|
|
<artifactId>spoutpluginapi</artifactId>
|
|
|
|
<version>dev-SNAPSHOT</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2012-03-24 04:02:13 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>ru.tehkode</groupId>
|
|
|
|
<artifactId>PermissionsEx</artifactId>
|
|
|
|
<version>1.19.1</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/PermissionsEx.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.bananaco</groupId>
|
|
|
|
<artifactId>bPermissions</artifactId>
|
|
|
|
<version>2.9.1</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/bpermissions.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.platymuus.bukkit.permissions</groupId>
|
|
|
|
<artifactId>PermissionsBukkit</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/PermissionsBukkit.jar</systemPath>
|
|
|
|
</dependency>
|
2012-08-13 07:17:09 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
<version>1.2.5-R5.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2012-01-10 20:39:57 +01:00
|
|
|
</dependencies>
|
2011-01-06 01:50:45 +01:00
|
|
|
</project>
|