This project is managed by Gradle, a build automation tool for Java. In order to run this project, you need to have Gradle installed on your machine.
If you don't have Gradle installed on your machine, you can follow the official Gradle installation guide here.
Once you have Gradle installed, you can run the project by executing the following command in your terminal:
gradle run
This command will compile the project and start the application.
If you want to build the project without running it, you can execute the following command:
gradle build
This command will compile the project and create an executable JAR file in the build/libs directory. You can run the JAR file using the java -jar command.
If you want to clean the build directory and start fresh, you can execute the following command:
gradle clean
This command will delete all files generated by the previous builds.
By following these instructions, you should be able to run, build, and clean the project using Gradle. If you encounter any issues or have any questions, feel free to contact the project team.