Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-19 14:30:16 +01:00
33 Zeilen
1.2 KiB
XML
33 Zeilen
1.2 KiB
XML
<?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>us.myles</groupId>
|
|
<artifactId>ViaVersion</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<!-- Sorry about this path >:( I promise to fix it when I stop using NMS :) -->
|
|
<groupId>org.spigot</groupId>
|
|
<artifactId>spigot1.8</artifactId>
|
|
<version>1.8</version>
|
|
<scope>system</scope>
|
|
<systemPath>E:/spigot_server.jar</systemPath>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |