2020-02-08 19:43:25 +00: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>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.geysermc</groupId>
|
|
|
|
<artifactId>bootstrap-parent</artifactId>
|
2020-08-11 18:10:48 +00:00
|
|
|
<version>1.1.0</version>
|
2020-02-08 19:43:25 +00:00
|
|
|
<relativePath>../</relativePath>
|
|
|
|
</parent>
|
|
|
|
<artifactId>bootstrap-velocity</artifactId>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.geysermc</groupId>
|
|
|
|
<artifactId>connector</artifactId>
|
2020-08-11 18:10:48 +00:00
|
|
|
<version>1.1.0</version>
|
2020-02-08 19:43:25 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.velocitypowered</groupId>
|
|
|
|
<artifactId>velocity-api</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<finalName>${outputName}-Velocity</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources/</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
2020-04-30 06:40:45 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestEntries>
|
|
|
|
<Main-Class>org.geysermc.platform.velocity.GeyserVelocityMain</Main-Class>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-02-08 19:43:25 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.2.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
2020-04-05 05:44:23 +00:00
|
|
|
<configuration>
|
|
|
|
<relocations>
|
2020-09-02 04:38:10 +00:00
|
|
|
<relocation>
|
|
|
|
<pattern>com.fasterxml.jackson</pattern>
|
|
|
|
<shadedPattern>org.geysermc.platform.velocity.shaded.jackson</shadedPattern>
|
|
|
|
</relocation>
|
2020-04-05 05:44:23 +00:00
|
|
|
<relocation>
|
|
|
|
<pattern>it.unimi.dsi.fastutil</pattern>
|
|
|
|
<shadedPattern>org.geysermc.platform.velocity.shaded.fastutil</shadedPattern>
|
|
|
|
</relocation>
|
2020-06-23 23:51:59 +00:00
|
|
|
<relocation>
|
2020-08-28 15:29:48 +00:00
|
|
|
<pattern>org.reflections</pattern>
|
2020-06-23 23:51:59 +00:00
|
|
|
<shadedPattern>org.geysermc.platform.velocity.shaded.reflections</shadedPattern>
|
|
|
|
</relocation>
|
2020-09-03 03:42:53 +00:00
|
|
|
<relocation>
|
|
|
|
<pattern>com.google.common</pattern>
|
|
|
|
<shadedPattern>org.geysermc.platform.velocity.shaded.google.common</shadedPattern>
|
|
|
|
</relocation>
|
2020-09-02 04:38:10 +00:00
|
|
|
<relocation>
|
|
|
|
<pattern>com.google.guava</pattern>
|
2020-09-03 03:42:53 +00:00
|
|
|
<shadedPattern>org.geysermc.platform.velocity.shaded.google.guava</shadedPattern>
|
2020-09-02 04:38:10 +00:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.dom4j</pattern>
|
|
|
|
<shadedPattern>org.geysermc.platform.velocity.shaded.dom4j</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>net.kyori.adventure</pattern>
|
|
|
|
<shadedPattern>org.geysermc.platform.velocity.shaded.adventure</shadedPattern>
|
|
|
|
</relocation>
|
2020-04-05 05:44:23 +00:00
|
|
|
</relocations>
|
|
|
|
</configuration>
|
2020-02-08 19:43:25 +00:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<excludes>
|
|
|
|
<exclude>com.google.code.gson:*</exclude>
|
|
|
|
<exclude>io.netty:*</exclude>
|
|
|
|
<exclude>org.slf4j:*</exclude>
|
|
|
|
<exclude>org.ow2.asm:*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</artifactSet>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|