start of better hub integration for users

This commit is contained in:
2026-05-29 13:28:48 -04:00
parent b43dc289a0
commit 9fc011fc1b
40 changed files with 2756 additions and 48 deletions
+48 -1
View File
@@ -10,7 +10,7 @@
<packaging>jar</packaging>
<name>Hub</name>
<description>Lobby/hub behavior: protection, welcome message, spawn-on-join</description>
<description>Lobby/hub behavior: protection, welcome message, spawn-on-join, daily rewards</description>
<properties>
<maven.compiler.source>21</maven.compiler.source>
@@ -18,6 +18,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<hytale.server.jar>${user.home}/AppData/Roaming/Hytale/install/release/package/game/latest/Server/HytaleServer.jar</hytale.server.jar>
<networkcore.jar>${project.basedir}/../Core/target/NetworkCore-0.1.0.jar</networkcore.jar>
<coreui.jar>${project.basedir}/../CoreUI/target/CoreUI-0.1.0.jar</coreui.jar>
</properties>
<dependencies>
@@ -37,6 +38,14 @@
<systemPath>${networkcore.jar}</systemPath>
</dependency>
<dependency>
<groupId>net.kewwbec</groupId>
<artifactId>coreui</artifactId>
<version>0.1.0</version>
<scope>system</scope>
<systemPath>${coreui.jar}</systemPath>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
@@ -47,5 +56,43 @@
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<minimizeJar>false</minimizeJar>
<artifactSet>
<excludes>
<exclude>com.hypixel.hytale:*</exclude>
<exclude>net.kewwbec:networkcore</exclude>
<exclude>net.kewwbec:coreui</exclude>
<exclude>com.google.code.findbugs:*</exclude>
</excludes>
</artifactSet>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
<exclude>module-info.class</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>