No description
Find a file
2026-02-15 10:35:57 +01:00
.idea . 2026-02-14 20:19:23 +01:00
core-api let me turn this into a plugin 2026-02-15 10:35:57 +01:00
core-impl/src/main/java/de/kentoj/scrow let me turn this into a plugin 2026-02-15 10:35:57 +01:00
gradle/wrapper first commit 2026-02-14 10:54:24 +01:00
.gitignore first commit 2026-02-14 10:54:24 +01:00
build.gradle.kts . 2026-02-14 14:04:36 +01:00
gradlew first commit 2026-02-14 10:54:24 +01:00
gradlew.bat first commit 2026-02-14 10:54:24 +01:00
README.md fix gradle dependencies 2026-02-14 12:51:06 +01:00
settings.gradle.kts fix gradle dependencies 2026-02-14 12:51:06 +01:00

environment

docker network create scrow 2>/dev/null || true
docker run -d --network scrow -it --rm --name mongo -p 27017:27017 mongo
docker run -d --network scrow -e ME_CONFIG_MONGODB_SERVER=mongo -e ME_CONFIG_MONGODB_AUTH_PASSWORD='' -e ME_CONFIG_MONGODB_AUTH_USERNAME='' --name mongo-express -p 8081:8081 mongo-express

modules

  • APIs

  • core-api contains api for all java development

  • core-bukkit-api contains api for bukkit development

    • depends on core-api
  • implementations

    the -impl suffix indicates that this module implements the API with the same prefix. So core-impl implements core-api.

    • core-bukkit-impl is a spigot plugin. It shades core-impl.