Harbor-Minecraft/pom.xml

158 lines
4.7 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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>mykyta.Harbor</groupId>
<artifactId>Harbor</artifactId>
<version>1.5</version>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spigot>${project.basedir}/spigot</spigot>
</properties>
<dependencies>
<!-- GSON -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
</dependency>
<!-- Spigot versions -->
<dependency>
<groupId>spigotmc.org</groupId>
<artifactId>spigot-1.14.1</artifactId>
<scope>system</scope>
<systemPath>${spigot}/1.14.1.jar</systemPath>
<version>1.14.1</version>
</dependency>
<dependency>
<groupId>spigotmc.org</groupId>
<artifactId>spigot-1.14</artifactId>
<scope>system</scope>
<systemPath>${spigot}/1.14.jar</systemPath>
<version>1.14</version>
</dependency>
<dependency>
<groupId>spigotmc.org</groupId>
<artifactId>spigot-1.13.2</artifactId>
<scope>system</scope>
<systemPath>${spigot}/1.13.2.jar</systemPath>
<version>1.13.2</version>
</dependency>
<dependency>
<groupId>spigotmc.org</groupId>
<artifactId>spigot-1.13</artifactId>
<scope>system</scope>
<systemPath>${spigot}/1.13.jar</systemPath>
<version>1.13</version>
</dependency>
<dependency>
<groupId>spigotmc.org</groupId>
<artifactId>spigot-1.12.2</artifactId>
<scope>system</scope>
<systemPath>${spigot}/1.12.2.jar</systemPath>
<version>1.12.2</version>
</dependency>
<dependency>
<groupId>spigotmc.org</groupId>
<artifactId>spigot-1.11.2</artifactId>
<scope>system</scope>
<systemPath>${spigot}/1.11.2.jar</systemPath>
<version>1.11.2</version>
</dependency>
<dependency>
<groupId>spigotmc.org</groupId>
<artifactId>spigot-1.10.2</artifactId>
<scope>system</scope>
<systemPath>${spigot}/1.10.2.jar</systemPath>
<version>1.10.2</version>
</dependency>
<dependency>
<groupId>spigotmc.org</groupId>
<artifactId>spigot-1.9.4</artifactId>
<scope>system</scope>
<systemPath>${spigot}/1.9.4.jar</systemPath>
<version>1.9.4</version>
</dependency>
<dependency>
<groupId>spigotmc.org</groupId>
<artifactId>spigot-1.9.2</artifactId>
<scope>system</scope>
<systemPath>${spigot}/1.9.2.jar</systemPath>
<version>1.9.2</version>
</dependency>
<dependency>
<groupId>spigotmc.org</groupId>
<artifactId>spigot-1.8.8</artifactId>
<scope>system</scope>
<systemPath>${spigot}/1.8.8.jar</systemPath>
<version>1.8.8</version>
</dependency>
<dependency>
<groupId>spigotmc.org</groupId>
<artifactId>spigot-1.8.3</artifactId>
<scope>system</scope>
<systemPath>${spigot}/1.8.3.jar</systemPath>
<version>1.8.3</version>
</dependency>
<dependency>
<groupId>spigotmc.org</groupId>
<artifactId>spigot-1.8</artifactId>
<scope>system</scope>
<systemPath>${spigot}/1.8.jar</systemPath>
<version>1.8</version>
</dependency>
<dependency>
<groupId>spigotmc.org</groupId>
<artifactId>spigot-1.7.2</artifactId>
<scope>system</scope>
<systemPath>${spigot}/1.7.2.jar</systemPath>
<version>1.7.2</version>
</dependency>
<!-- BossBarAPI for 1.7 -->
<dependency>
<groupId>inventivetalent.org</groupId>
<artifactId>bossbarapi-2.4.1</artifactId>
<scope>system</scope>
<systemPath>${spigot}/BossBarAPI.jar</systemPath>
<version>2.4.1</version>
</dependency>
</dependencies>
<build>
<directory>/home/nkomarn/Documents/Spigot Servers/1.14.2/plugins/</directory>
<sourceDirectory>${basedir}/src/</sourceDirectory>
<resources>
<resource>
<targetPath>.</targetPath>
<filtering>true</filtering>
<directory>${basedir}</directory>
<includes>
<include>*.yml</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
</plugin>
</plugins>
</build>
</project>