Archiviert
13
0
Dieses Repository wurde am 2022-03-24 archiviert. Du kannst Dateien ansehen und es klonen, aber nicht pushen oder Issues/Pull-Requests öffnen.
LobbySystem/pom.xml

59 Zeilen
1.9 KiB
XML

2019-11-18 18:50:56 +01: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>
<groupId>de.steamwar</groupId>
<artifactId>LobbySystem</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<url>https://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2020-09-04 16:08:28 +02:00
<main.basedir>${project.basedir}</main.basedir>
2019-11-18 18:50:56 +01:00
</properties>
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>src</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2020-09-04 16:08:28 +02:00
<version>3.6.1</version>
2019-11-18 18:50:56 +01:00
<configuration>
2020-01-19 16:30:48 +01:00
<source>8</source>
<target>8</target>
2019-11-18 18:50:56 +01:00
</configuration>
</plugin>
</plugins>
2020-01-19 16:38:01 +01:00
<finalName>lobbysystem</finalName>
2019-11-18 18:50:56 +01:00
</build>
<dependencies>
<dependency>
<groupId>steamwar</groupId>
<artifactId>Spigot</artifactId>
2020-02-09 17:56:20 +01:00
<version>1.15</version>
2020-09-04 16:08:28 +02:00
<scope>system</scope>
<systemPath>${main.basedir}/lib/Spigot-1.15.jar</systemPath>
2019-11-18 18:50:56 +01:00
</dependency>
<dependency>
<groupId>steamwar</groupId>
<artifactId>SpigotCore</artifactId>
2020-09-04 16:08:28 +02:00
<version>1.0</version>
<scope>system</scope>
<systemPath>${main.basedir}/lib/SpigotCore.jar</systemPath>
2019-11-18 18:50:56 +01:00
</dependency>
</dependencies>
</project>