3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemePark/pom.xml

41 lines
1.3 KiB
XML
Raw Normal View History

2019-01-15 17:16:59 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<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>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<groupId>me.paradoxpixel</groupId>
<artifactId>themepark</artifactId>
2020-04-18 19:46:53 +00:00
<version>1.4.1</version>
2019-01-15 17:16:59 +00:00
2019-03-04 14:29:21 +00:00
<repositories>
<repository>
<id>placeholderapi</id>
<url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
</repository>
2020-04-18 19:46:53 +00:00
<repository>
<id>dynmap</id>
<url>http://repo.mikeprimm.com/</url>
</repository>
2019-03-04 14:29:21 +00:00
</repositories>
2019-01-15 17:16:59 +00:00
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.8.8-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
2019-03-04 14:29:21 +00:00
<dependency>
2020-04-18 19:46:53 +00:00
<groupId>org.dynmap</groupId>
<artifactId>dynmap-api</artifactId>
<version>2.0</version>
2019-03-04 14:29:21 +00:00
<scope>provided</scope>
</dependency>
2019-01-15 17:16:59 +00:00
</dependencies>
</project>