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

62 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>
</properties>
<repositories>
<repository>
<id>maven</id>
<url>https://steamwar.de:81/maven/</url>
</repository>
</repositories>
<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>
<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>
2019-11-18 18:50:56 +01:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>steamwar</groupId>
<artifactId>SpigotCore</artifactId>
<version>2.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>