Files
FancyPlugins/tools/quick-e2e
dependabot[bot] 2f331cd49f chore(deps): bump com.google.code.gson:gson from 2.12.1 to 2.13.0 (#30)
Bumps [com.google.code.gson:gson](https://github.com/google/gson) from 2.12.1 to 2.13.0.
- [Release notes](https://github.com/google/gson/releases)
- [Changelog](https://github.com/google/gson/blob/main/CHANGELOG.md)
- [Commits](https://github.com/google/gson/compare/gson-parent-2.12.1...gson-parent-2.13.0)

---
updated-dependencies:
- dependency-name: com.google.code.gson:gson
  dependency-version: 2.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-17 16:37:49 +02:00
..
2025-03-16 19:53:06 +01:00

Quick E2E environment setup

A tool to generate a new E2E environment for Minecraft servers. Can be used to quickly setup a new environment for testing plugins on multiple server types and versions.

In the future, this tool can also be using in a CI/CD pipeline to automatically run tests on new builds or plugin versions.

TODOs

  • Add system to load configuration from file / command line arguments
  • Add services to install plugins
  • Add service to set port
  • Add option to update an existing E2E environment
  • Add option to delete an existing E2E environment

Features

Generate a new E2E environment with the following options:

  • Server type: paper, folia ...
  • Server version: 1.19.4, 1.20.1 ...
  • Server Build: latest, a specific build
  • Pre-installed plugins: links to modrinth
  • Custom plugin providers: build from monorepo
  • EULA: true, false
  • OP: a specific username

Update an existing E2E environment, if there is a new build or plugin version available.

Delete an existing E2E environment.

Usage

Generate a new E2E environment

Command line arguments:

java -jar quick-e2e.jar 
  --<generate|update|delete>
  --server-type paper
  --server-version 1.21.4
  --server-build latest
  --pre-installed-plugins "viaversion,luckperms,worldedit"
  --custom-plugin-providers "monorepo"
  --eula true
  --op "OliverHD"

Configuration file:

{
  "serverType": "paper",
  "serverVersion": "1.21.4",
  "serverBuild": "latest",
  "preInstalledPlugins": ["viaversion", "luckperms", "worldedit"],
  "customPluginProviders": ["monorepo"],
  "eula": true,
  "op": "OliverHD"
}
java -jar quick-e2e.jar --generate --config-file config.json