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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2011-02-24 04:07:43 +01:00
|
|
|
<groupId>org.dynmap</groupId>
|
2011-02-18 01:23:14 +01:00
|
|
|
<artifactId>dynmap</artifactId>
|
2011-09-09 21:02:40 +02:00
|
|
|
<version>0.23</version>
|
2011-03-16 02:28:49 +01:00
|
|
|
<name>dynmap</name>
|
2011-03-29 21:22:54 +02:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2011-03-16 02:28:49 +01:00
|
|
|
<url>http://github.com/FrozenCow/dynmap/</url>
|
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
|
|
|
<url>https://github.com/FrozenCow/dynmap/issues</url>
|
|
|
|
</issueManagement>
|
2011-01-06 01:50:45 +01:00
|
|
|
<build>
|
2011-09-09 20:35:22 +02:00
|
|
|
<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>
|
2011-01-06 01:50:45 +01:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.0.2</version>
|
|
|
|
<configuration>
|
2011-01-15 23:17:02 +01:00
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
2011-01-06 01:50:45 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-02-20 06:49:24 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
2011-02-24 04:14:46 +01:00
|
|
|
<descriptor>src/main/assembly/package.xml</descriptor>
|
2011-02-20 06:49:24 +01:00
|
|
|
</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>
|
|
|
|
<execution>
|
|
|
|
<id>build</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2011-01-06 01:50:45 +01:00
|
|
|
</build>
|
|
|
|
<dependencies>
|
2011-03-11 15:18:41 +01:00
|
|
|
<dependency>
|
2011-03-16 01:31:05 +01:00
|
|
|
<groupId>com.nijikokun.bukkit</groupId>
|
2011-03-11 15:18:41 +01:00
|
|
|
<artifactId>Permissions</artifactId>
|
2011-03-16 01:31:05 +01:00
|
|
|
<version>[2.5.4,)</version>
|
2011-03-11 15:18:41 +01:00
|
|
|
</dependency>
|
2011-01-15 12:13:54 +01:00
|
|
|
<dependency>
|
2011-01-15 17:47:40 +01:00
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
2011-01-15 12:13:54 +01:00
|
|
|
</dependency>
|
2011-01-06 01:50:45 +01:00
|
|
|
</dependencies>
|
|
|
|
</project>
|