To start your application in the dev profile, run:
./gradlew
To build the final jar and optimize the noosphereScheduler application for production, run:
./gradlew -Pprod clean bootJar
To ensure everything worked, run:
java -jar build/libs/*.jar
To package your application as a war in order to deploy it to an application server, run:
./gradlew -Pprod -Pwar clean bootWar
To launch your application's tests, run:
./gradlew test integrationTest jacocoTestReport
Performance tests are run by [Gatling][] and written in Scala. They're located in src/test/java/gatling/simulations.
You can execute all Gatling tests with
./gradlew gatlingRun.