mirror of
https://github.com/ViaVersion/ViaBackwards.git
synced 2024-11-02 09:09:55 +01:00
106 lines
3.7 KiB
XML
106 lines
3.7 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<!--
|
||
|
~
|
||
|
~ Copyright (C) 2016 Matsv
|
||
|
~
|
||
|
~ This program is free software: you can redistribute it and/or modify
|
||
|
~ it under the terms of the GNU General Public License as published by
|
||
|
~ the Free Software Foundation, either version 3 of the License, or
|
||
|
~ (at your option) any later version.
|
||
|
~
|
||
|
~ This program is distributed in the hope that it will be useful,
|
||
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
~ GNU General Public License for more details.
|
||
|
~
|
||
|
~ You should have received a copy of the GNU General Public License
|
||
|
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
-->
|
||
|
|
||
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
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>nl.matsv</groupId>
|
||
|
<artifactId>viabackwards</artifactId>
|
||
|
<version>1.0</version>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>spigot-repo</id>
|
||
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>viaversion-repo</id>
|
||
|
<url>https://repo.viaversion.com/</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.spigotmc</groupId>
|
||
|
<artifactId>spigot-api</artifactId>
|
||
|
<version>1.10.2-R0.1-SNAPSHOT</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>us.myles</groupId>
|
||
|
<artifactId>viaversion</artifactId>
|
||
|
<version>0.9.8-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<!-- Netty (Network Library) -->
|
||
|
<dependency>
|
||
|
<groupId>io.netty</groupId>
|
||
|
<artifactId>netty-all</artifactId>
|
||
|
<version>4.0.20.Final</version>
|
||
|
<scope>provided</scope>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<!-- Lombok -->
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>1.16.6</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<finalName>${project.name}-${project.version}</finalName>
|
||
|
<sourceDirectory>src/main/java</sourceDirectory>
|
||
|
<defaultGoal>clean install</defaultGoal>
|
||
|
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<targetPath>.</targetPath>
|
||
|
<filtering>false</filtering>
|
||
|
<directory>.</directory>
|
||
|
<includes>
|
||
|
<include>LICENSE</include>
|
||
|
</includes>
|
||
|
</resource>
|
||
|
<resource>
|
||
|
<targetPath>.</targetPath>
|
||
|
<filtering>true</filtering>
|
||
|
<directory>src/main/resources/</directory>
|
||
|
<includes>
|
||
|
<include>*</include>
|
||
|
</includes>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.3</version>
|
||
|
<configuration>
|
||
|
<source>1.8</source>
|
||
|
<target>1.8</target>
|
||
|
<showWarnings>false</showWarnings>
|
||
|
<showDeprecation>false</showDeprecation>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|