gomint / gomint

GoMint is a modern Minecraft Bedrock Edition server enabling you to make your visions come true

Home Page:https://gomint.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GoMint is no longer actively maintained.

GoMint

Build Status GitHub Stars GitHub Stars GitHub Stars License

GoMint is a modern Minecraft Bedrock Edition server enabling you to make your visions come true

Start Sequence

❇ Getting Started

πŸ“¦ Features

  • ⚑ High performance, fast startup and low resource usage
  • πŸ”§ Highly configurable via configuration files
  • πŸ”Œ Functionality extendable via plugins
  • πŸ— Cryptography implementations in Rust
  • πŸ’« Crafting, enchanting, all blocks, all items

⏬ Download

⚠ The following one-liner scripts download the latest build, not the latest tag! ⚠ GoMint requires Java version 11 or higher!

Windows Command Line

powershell.exe "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri 'https://gomint-artifacts.s3.amazonaws.com/latest.zip' -OutFile gomint.zip; $Random = Get-Random -Maximum 0xFFFFFF; Expand-Archive -LiteralPath gomint.zip -DestinationPath gomint-$Random; Write-Output gomint-$Random"

PowerShell

$ProgressPreference = 'SilentlyContinue'; `
    Invoke-WebRequest -Uri 'https://gomint-artifacts.s3.amazonaws.com/latest.zip' -OutFile gomint.zip; `
    $Random = Get-Random -Maximum 0xFFFFFF; `
    Expand-Archive -LiteralPath gomint.zip -DestinationPath gomint-$Random; `
    Write-Output gomint-$Random

Unix (Curl + Core Utils)

WORKSPACE=gomint-$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 6 | head -n 1) && \
	curl --silent -o gomint.zip https://gomint-artifacts.s3.amazonaws.com/latest.zip && \
	unzip gomint.zip -d $WORKSPACE && echo $WORKSPACE

Unix (Wget + Core Utils)

WORKSPACE=gomint-$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 6 | head -n 1) && \
	wget --quiet -O gomint.zip https://gomint-artifacts.s3.amazonaws.com/latest.zip && \
	unzip gomint.zip -d $WORKSPACE && echo $WORKSPACE

πŸ’  Integration

CloudNet V3

Guide coming soon

Docker

Guide coming soon

Pterodactyl

Guide coming soon

βš’ Compilation

Bundled Maven (Windows Command Line)

mvnw clean install

Bundled Maven (Shell)

./mvnw.sh clean install

Local Maven Installation

mvn clean install

πŸš€ Developer setup

You need to run compilation at least once since there is a code generator configured. Once you have done that you can add io.gomint.server.Bootstrap as a runner. That runner needs custom options for Netty --add-opens java.base/java.nio=io.netty.common --add-exports java.base/jdk.internal.misc=io.netty.common --add-modules ALL-DEFAULT.

If not properly configured you will see this error when the first connection arrives:

[jRaknet events] WARN  io.netty.channel.DefaultChannelPipeline - An exceptionCaught() event was fired, and it reached at the tail of the pipeline. It usually means the last handler in the pipeline did not handle the exception.
java.lang.UnsupportedOperationException: sun.misc.Unsafe or java.nio.DirectByteBuffer.<init>(long, int) not available

πŸ‘₯ Contributors

πŸ“ Code Contributors

This project exists thanks to all the people who contribute. [Contribute].

πŸ’Έ Financial Contributors

Become a financial contributor and help us sustain our community. [Contribute]

Individuals

Organizations

Support this project with your organization. Your logo will show up here with a link to your website. [Contribute]

About

GoMint is a modern Minecraft Bedrock Edition server enabling you to make your visions come true

https://gomint.io/

License:Other


Languages

Language:Java 100.0%Language:Shell 0.0%Language:Dockerfile 0.0%Language:Batchfile 0.0%