ViaVersion/pom.xml

185 lines
5.9 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
2016-03-06 16:36:54 +01:00
<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>us.myles</groupId>
<artifactId>viaversion-parent</artifactId>
2020-12-16 18:48:17 +01:00
<version>3.3.0-20w51a</version>
<packaging>pom</packaging>
2016-03-06 16:36:54 +01:00
2016-09-25 21:43:32 +02:00
<name>viaversion-parent</name>
<description>Allow newer clients to join older server versions.</description>
2016-03-06 16:36:54 +01:00
<inceptionYear>2016</inceptionYear>
<url>https://www.spigotmc.org/resources/viaversion.19254/</url>
<modules>
<module>common</module>
<module>bukkit</module>
<module>bukkit-legacy</module>
<module>bungee</module>
2019-10-27 13:15:45 +01:00
<module>fabric</module>
2016-09-26 02:44:21 +02:00
<module>sponge</module>
<module>sponge-legacy</module>
<module>velocity</module>
2016-10-04 21:20:59 +02:00
<module>jar</module>
</modules>
2016-03-06 16:36:54 +01:00
<prerequisites>
<maven>3.3.3</maven>
</prerequisites>
<properties>
<!-- Project Properties -->
<projectEncoding>UTF-8</projectEncoding>
<project.build.sourceEncoding>${projectEncoding}</project.build.sourceEncoding>
<project.build.outputEncoding>${projectEncoding}</project.build.outputEncoding>
2019-05-13 12:43:38 +02:00
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
2016-03-06 16:36:54 +01:00
</properties>
<repositories>
2017-08-06 00:03:06 +02:00
<!-- SpigotMC Repository (Bukkit API) -->
2016-03-06 16:36:54 +01:00
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots</url>
</repository>
2017-08-06 00:03:06 +02:00
<!-- Bungee Repository -->
2016-09-26 14:14:38 +02:00
<repository>
<id>bungeecord-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
2017-05-14 14:34:51 +02:00
<!-- Velocity repository -->
<repository>
<id>velocity</id>
2020-07-15 17:44:24 +02:00
<url>https://nexus.velocitypowered.com/repository/velocity-artifacts-snapshots/</url>
</repository>
<!-- Sponge repository -->
<repository>
<id>sponge</id>
<url>https://repo.spongepowered.org/maven</url>
</repository>
2017-08-06 00:03:06 +02:00
<!-- ViaVersion Repository -->
2017-05-14 14:34:51 +02:00
<repository>
<id>viaversion-repo</id>
<url>https://repo.viaversion.com</url>
</repository>
<!-- Mojang's Minecraft Libraries -->
<repository>
<id>mojang</id>
<url>https://libraries.minecraft.net</url>
</repository>
2016-03-06 16:36:54 +01:00
</repositories>
<dependencies>
<!-- Javassist (Bytecode Library) -->
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
2020-08-04 13:22:03 +02:00
<version>3.27.0-GA</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
2016-12-24 18:27:59 +01:00
<!-- OpenNBT Library -->
2017-05-14 14:34:51 +02:00
<!--Version 1.0 is conflicting with Maven Central (2012)-->
2016-03-06 16:36:54 +01:00
<dependency>
2017-05-14 14:34:51 +02:00
<groupId>com.github.steveice10</groupId>
2016-03-06 16:36:54 +01:00
<artifactId>opennbt</artifactId>
2019-03-24 14:59:51 +01:00
<version>1.2-SNAPSHOT</version>
<scope>compile</scope>
2016-03-06 16:36:54 +01:00
<optional>true</optional>
</dependency>
2016-03-06 16:36:54 +01:00
<!-- GSON (JSON Library) -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
2020-08-04 13:22:03 +02:00
<version>2.8.6</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<!-- Netty (Network Library) -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
2018-07-23 00:03:22 +02:00
<version>4.0.20.Final</version>
<scope>provided</scope>
2016-03-06 16:36:54 +01:00
<optional>true</optional>
</dependency>
<!-- ChatColour API -->
2016-06-03 20:49:06 +02:00
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-chat</artifactId>
<version>1.16-R0.4-SNAPSHOT</version>
2019-04-23 10:48:25 +02:00
<scope>compile</scope>
2016-06-03 20:49:06 +02:00
</dependency>
2016-09-26 14:36:10 +02:00
<!-- Guava magic -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>17.0</version>
<scope>provided</scope>
2016-09-26 14:36:10 +02:00
</dependency>
<!-- JetBrains Annotations -->
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>19.0.0</version>
<scope>provided</scope>
</dependency>
<!-- JUnit -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.3.1</version>
<scope>test</scope>
</dependency>
2020-08-06 11:35:19 +02:00
<!-- Snake YAML -->
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.18</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Run any tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>deploy</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>