Skip to content

Latest commit

 

History

History
53 lines (33 loc) · 894 Bytes

File metadata and controls

53 lines (33 loc) · 894 Bytes

noosphereScheduler

Development

To start your application in the dev profile, run:

./gradlew

Building for production

Packaging as jar

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

Packaging as war

To package your application as a war in order to deploy it to an application server, run:

./gradlew -Pprod -Pwar clean bootWar

Testing

Spring Boot tests

To launch your application's tests, run:

./gradlew test integrationTest jacocoTestReport

Gatling

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.