Update project configuration and refactor codebase
- Migrated Minestom dependency to new groupId. - Added Maven Shade plugin for packaging. - Switched Java version to 21 and corrected JDK settings. - Refactored terrain generation logic to use the updated Minestom API. - Replaced deprecated particle creation methods. - Enabled Velocity proxy support. - Updated various configuration files to align with the new build setup.
This commit is contained in:
37
pom.xml
37
pom.xml
@@ -26,15 +26,34 @@
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.github.Minestom</groupId>
|
||||
<artifactId>Minestom</artifactId>
|
||||
<version>484727d02a</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.jboss.shrinkwrap.resolver</groupId>
|
||||
<artifactId>shrinkwrap-resolver-depchain</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
<groupId>net.minestom</groupId>
|
||||
<artifactId>minestom-snapshots</artifactId>
|
||||
<version>d707b0674f</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-shade-plugin</artifactId>
|
||||
<version>3.5.3</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>shade</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<transformers>
|
||||
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
||||
<mainClass>eu.mhsl.minecraft.endlessjumper.EndlessJumper</mainClass>
|
||||
</transformer>
|
||||
</transformers>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
Reference in New Issue
Block a user