What things you need to install the software and how to install them Git Bash --> https://gitforwindows.org/ Java jdk-14.0.1 --> https://www.oracle.com/java/technologies/javase/jdk14-archive-downloads.html Maven --> https://maven.apache.org/download.cgi Springboot --> https://spring.io/guides/gs/spring-boot/
A step by step series of examples that tell you how to get a development env running
-
Open git Bash.
-
cd to the directory where your file is stored, in my case its in Desktop and go into the documentation folder.
$ cd " your file directory "/HWA-Project
- Unwrap the war file
$ java -jar HWA-Project-0.0.1-SNAPSHOT.war
To run tests please use git bash and use the following file directory structure to cd too. Make sure in the IMS-Starter folder there should be a pom file like below. To see the contents of a folder please use the command ls.
$ cd " your file directory "/HWA-Project
Unit testing tests each invdiual method of the program.
Run all the unit test classes.
$ mvn test
Run a single unit test classe.
$ mvn -Dtest= "Test name" test
Run a set of unit test classes.
$ mvn -Dtest= "Test name", "Test name" test
Run Integration test classes.
$ mvn clean verify -P integration-test
- Maven - Dependency Management
We use SemVer for versioning.
- Chetan Pardeep - work - chetanpardeep
This project is licensed under the MIT license - see the LICENSE.md file for details
For help in Choosing a license
- Hat tip to anyone whose code was used
- Inspiration
- etc