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>
|
|
|
|
<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>
|
|
|
|
<argument>${artifactId}</argument>
|
|
|
|
</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>
|
|
|
|
</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>
|
|
|
|
</repositories>
|
|
|
|
</project>
|