https://github.com/olgam4/glo-4003_habitatul
https://github.com/olgam4/glo-4003_habitatul
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/olgam4/glo-4003_habitatul
- Owner: olgam4
- License: mit
- Created: 2020-09-11T19:33:32.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-01-31T18:31:10.000Z (over 5 years ago)
- Last Synced: 2025-02-05T01:43:36.948Z (3 months ago)
- Size: 1.78 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[](https://travis-ci.com/SamuelCabralCruz/GLO-4003) [](https://codecov.io/gh/SamuelCabralCruz/GLO-4003)
# Habitat UL
## Get Started
First thing first, in order to build the project and install all dependencies, simply run the following command:
```{bash}
mvn clean install
```In order to start the project, simply run:
```{bash}
mvn exec:java -pl HabitatUL
```If you want to run static style check analysis, you can use:
```{bash}
mvn checkstyle:checkstyle
```To execute unit tests separately:
```{bash}
mvn surefire:test
```However, integration and acceptance tests must be executed together:
```{bash}
mvn failsafe:integration-test
```Otherwise, you can also run all validations with the simple command:
```{bash}
mvn verify
```