No description
| .idea | ||
| core-bukkit-api | ||
| core-bukkit-impl | ||
| gradle/wrapper | ||
| .gitignore | ||
| build.gradle.kts | ||
| gradlew | ||
| gradlew.bat | ||
| README.md | ||
| settings.gradle.kts | ||
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='' -e ME_CONFIG_BASICAUTH_USERNAME='a' -e ME_CONFIG_BASICAUTH_PASSWORD=1234 --name mongo-express -p 8081:8081 mongo-express
access the mongo-db web interface at http://localhost:8081; username a, password 1234
modules
-
APIs
-
core-api contains api for all java development
-
core-bukkit-api contains api for bukkit development
- depends on core-api
-
implementations
the
-implsuffix indicates that this module implements the API with the same prefix. Socore-implimplementscore-api.- core-bukkit-impl is a spigot plugin. It shades core-impl.