To run the utility, simply run it from the command line using Gradle like this:
./gradlew clean build && java -jar build/libs/{project_id}-0.1.0.jar
Or if you are using Maven, run it like this:
mvn package && java -jar target/{project_id}-0.1.0.jar
You can alternatively run the app directly from Gradle like this:
./gradlew bootRun
Note
|
With mvn, you can run mvn spring-boot:run .
|