Skip to content

Latest commit

 

History

History
31 lines (16 loc) · 537 Bytes

README.md

File metadata and controls

31 lines (16 loc) · 537 Bytes

oracle

Development

To start your application in the dev profile, run:

./mvnw

Building for production

Packaging as jar

To build the final jar and optimize the oracle application for production, run:

./mvnw -Pprod clean verify

To ensure everything worked, run:

java -jar target/*.jar

Packaging as war

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

./mvnw -Pprod,war clean verify

Testing

To launch your application's tests, run:

./mvnw verify