Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 551 Bytes

run_the_utility.adoc

File metadata and controls

22 lines (16 loc) · 551 Bytes

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.