Follow the next steps:
- Java 21
- SpringBoot 3.4.1
- ./gradlew clean
- ./gradlew build
- java -jar build/libs/minebasic-0.0.1-SNAPSHOT.jar
Root: /minebasic/v1Path: /execute - POST
{
"command": "kill",
"arguments": "notch"
}Path: /teleport - PUT
{
"player": {
"name" : "jeff"
},
"location" : {
"x" : -1,
"y" : 120,
"z" : -1
}
}Path: /summon - POST
{
"name" : "zombie",
"amount" : 7,
"location" : {
"x" : -0,
"y" : 64,
"z" : -0
}
}Path: /give - POST
{
"player": {
"name" : "notch"
},
"name" : "diamond",
"amount" : 777
}