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>
|
2018-09-03 02:25:10 +02:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>resources</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2018-09-03 00:51:36 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.7.0</version>
|
|
|
|
<configuration>
|
|
|
|
<release>10</release>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-09-03 02:25:10 +02:00
|
|
|
<plugin>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
2018-09-08 02:17:24 +02:00
|
|
|
<version>1.6.0</version>
|
2018-09-03 02:25:10 +02:00
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>Version Calculation</id>
|
|
|
|
<phase>deploy</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>exec</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<executable>${basedir}/deploy.sh</executable>
|
|
|
|
<arguments>
|
|
|
|
<argument>${project.build.directory}/${project.build.finalName}.jar</argument>
|
2018-09-08 00:52:13 +02:00
|
|
|
<argument>${project.artifactId}</argument>
|
2018-09-03 02:25:10 +02:00
|
|
|
</arguments>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-09-03 00:51:36 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>1.12-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-09-08 00:52:13 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.lucko.luckperms</groupId>
|
|
|
|
<artifactId>luckperms-api</artifactId>
|
|
|
|
<version>4.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-09-08 02:17:24 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.connorlinfoot</groupId>
|
|
|
|
<artifactId>BountifulAPI</artifactId>
|
|
|
|
<version>1.6.4</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-09-08 18:04:09 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
|
|
<artifactId>worldedit-core</artifactId>
|
|
|
|
<version>6.0.0-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldguard</groupId>
|
|
|
|
<artifactId>worldguard-legacy</artifactId>
|
|
|
|
<version>6.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-09-09 19:14:49 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.massivecraft.massivecore</groupId>
|
|
|
|
<artifactId>MassiveCore</artifactId>
|
|
|
|
<version>2.14.1-SNAPSHOT</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>/home/erik/Dokumenty/Java/marwland/res/MassiveCore.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.massivecraft.factions</groupId>
|
|
|
|
<artifactId>Factions</artifactId>
|
|
|
|
<version>2.14.1-SNAPSHOT</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>/home/erik/Dokumenty/Java/marwland/res/Factions.jar</systemPath>
|
|
|
|
</dependency>
|
2018-09-03 00:51:36 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
2018-09-03 02:25:10 +02:00
|
|
|
|
2018-09-03 00:51:36 +02:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2018-09-08 18:04:09 +02:00
|
|
|
<repository>
|
|
|
|
<id>sk89q-repo</id>
|
|
|
|
<url>http://maven.sk89q.com/repo/</url>
|
|
|
|
</repository>
|
2018-09-03 00:51:36 +02:00
|
|
|
</repositories>
|
|
|
|
</project>
|