1 Commits

Author SHA1 Message Date
KartoffelChipss 3fa4e518ac Update config table in README 2026-05-24 22:58:27 +02:00
+13 -12
View File
@@ -62,19 +62,20 @@ This will:
All options go inside the `<configuration>` block of the plugin declaration. All options go inside the `<configuration>` block of the plugin declaration.
| Option | Default | Description | | Option | Default | Description |
|---|---|---------------------------------------------------------------------------------------------------------------------------------| |---|---|---|
| `mcVersion` | *(required)* | The Minecraft version to run, e.g. `1.21.4` | | `mcVersion` | *(required)* | The Minecraft version to run, e.g. `1.21.4` |
| `acceptEula` | `false` | Automatically accept the [Minecraft EULA](https://aka.ms/MinecraftEULA). By setting this to `true` you confirm your acceptance. | | `acceptEula` | `false` | Automatically accept the [Minecraft EULA](https://aka.ms/MinecraftEULA). By setting this to `true` you confirm your acceptance. |
| `serverSoftware` | `paper` | Server software to use. Supported values: `paper`, `spigot` | | `serverSoftware` | `paper` | Server software to use. Supported values: `paper`, `spigot` |
| `serverDirectory` | `./server` | Folder where the server files will be created | | `serverDirectory` | `./server` | Folder where the server files will be created |
| `serverJarName` | `server.jar` | File name for the server jar inside `serverDirectory` | | `serverJarName` | `server.jar` | File name for the server jar inside `serverDirectory` |
| `memory` | `2G` | RAM allocated to the server (used for both `-Xmx` and `-Xms`), e.g. `2G`, `512M` | | `minMemory` | `512M` | Minimum RAM allocated to the server (`-Xms`), e.g. `512M`, `1G` |
| `port` | *(Minecraft default)* | Port the server listens on | | `maxMemory` | `2G` | Maximum RAM allocated to the server (`-Xmx`), e.g. `2G`, `4G` |
| `remoteDebug` | `false` | Enable remote JVM debugging so you can attach your IDE's debugger | | `port` | *(Minecraft default)* | Port the server listens on |
| `debugPort` | `5005` | Port used for remote debugging (only relevant if `remoteDebug` is `true`) | | `remoteDebug` | `false` | Enable remote JVM debugging so you can attach your IDE's debugger |
| `jvmArgs` | *(none)* | Extra JVM flags passed to the server process (see below) | | `debugPort` | `5005` | Port used for remote debugging (only relevant if `remoteDebug` is `true`) |
| `pluginJar` | *(your built jar)* | Path to the plugin jar to deploy. You rarely need to change this | | `jvmArgs` | *(none)* | Extra JVM flags passed to the server process |
| `pluginJar` | *(your built jar)* | Path to the plugin jar to deploy. You rarely need to change this |
### Full configuration example ### Full configuration example