MarwCore/pom.xml

45 lines
1.4 KiB
XML
Raw Normal View History

2018-09-03 00:51:36 +02: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>
<groupId>cz.marwland.mc</groupId>
<artifactId>MarwCore</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>MarwCore</name>
<description>Core plugin for MarwLand.cz Spigot-based Minecraft servers</description>
2018-09-03 00:55:11 +02:00
<url>https://git.lixko.eu/MarwLand/MarwCore</url>
<organization>
<name>MarwLand</name>
<url>https://marwland.cz</url>
</organization>
<issueManagement>
<url>https://git.lixko.eu/MarwLand/MarwCore/issues</url>
<system>Gitea Issue Tracker</system>
</issueManagement>
2018-09-03 00:51:36 +02:00
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<release>10</release>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.12-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
</project>