2013-12-30 14:20:34 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2013-12-30 14:23:20 +01:00
|
|
|
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>de.craftlancer.imagemaps</groupId>
|
|
|
|
<artifactId>ImageMaps</artifactId>
|
2019-04-06 15:17:43 +02:00
|
|
|
<version>0.5.0</version>
|
2013-12-30 14:23:20 +01:00
|
|
|
<name>ImageMaps</name>
|
|
|
|
<description>Draw Images on maps!</description>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2014-03-17 18:03:06 +01:00
|
|
|
|
2013-12-30 14:23:20 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
2018-07-24 20:13:42 +02:00
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>http://hub.spigotmc.org/nexus/content/groups/public/</url>
|
2014-02-11 21:30:54 +01:00
|
|
|
</repository>
|
2013-12-30 14:23:20 +01:00
|
|
|
</repositories>
|
2018-07-24 20:13:42 +02:00
|
|
|
|
2013-12-30 14:23:20 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
2019-02-07 14:08:16 +01:00
|
|
|
<version>1.13.2-R0.1-SNAPSHOT</version>
|
2014-02-11 21:30:54 +01:00
|
|
|
</dependency>
|
2013-12-30 14:23:20 +01:00
|
|
|
</dependencies>
|
2018-07-24 20:13:42 +02:00
|
|
|
|
2013-12-30 14:23:20 +01:00
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
2014-01-09 23:47:17 +01:00
|
|
|
<directory>${basedir}/src/main/resources</directory>
|
2013-12-30 14:23:20 +01:00
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2014-01-09 23:47:17 +01:00
|
|
|
<finalName>${project.name}</finalName>
|
2013-12-30 14:20:34 +01:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.5.1</version>
|
|
|
|
<configuration>
|
2018-07-24 20:13:42 +02:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2013-12-30 14:20:34 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-02-11 21:30:54 +01:00
|
|
|
|
2013-12-30 14:20:34 +01:00
|
|
|
</plugins>
|
2013-12-30 14:23:20 +01:00
|
|
|
</build>
|
2013-12-30 14:20:34 +01:00
|
|
|
</project>
|