mirror of
https://github.com/Brettflan/WorldBorder.git
synced 2024-11-23 02:25:30 +01:00
5d745ca788
Added carpet to safe open block list Added showWhooshEffect(Location loc) helper method to Config class to show the whoosh effect, if it is enabled
58 lines
1.6 KiB
XML
58 lines
1.6 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>com.wimbli.WorldBorder</groupId>
|
|
<artifactId>WorldBorder</artifactId>
|
|
<version>1.7.3</version>
|
|
<name>WorldBorder</name>
|
|
<url>https://github.com/Brettflan/WorldBorder</url>
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>https://github.com/Brettflan/WorldBorder/issues</url>
|
|
</issueManagement>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>bukkit-repo</id>
|
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>dynmap-repo</id>
|
|
<url>http://repo.mikeprimm.com/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>1.6.1-R0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.dynmap</groupId>
|
|
<artifactId>dynmap-api</artifactId>
|
|
<version>1.8</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<defaultGoal>clean install</defaultGoal>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<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>
|
|
</plugins>
|
|
</build>
|
|
</project>
|