An open API service indexing awesome lists of open source software.

https://github.com/codbex/codbex-platform-parent

Parent Module for Platform Products
https://github.com/codbex/codbex-platform-parent

infrastructure

Last synced: 1 day ago
JSON representation

Parent Module for Platform Products

Awesome Lists containing this project

README

          

# codbex-platform-parent
Parent Module for Platform Products

## Pom properties

| Property Name | Description | Default Value |
|----------------------|---------------------------------|---------------|
| skipTests | Skip unit tests (*.Test) | false |
| skipITs | Skip integration tests (*.IT) | true |
| skip.code.formatting | Skip java code formatting | false |
| maven.javadoc.skip | Skip javadoc | false |
| license.skip | Skip license headers generation | false |

## Profiles

| Profile Name | Description |
|-------------------|----------------------------------------------------------------------|
| tests | Run unit and integration tests |
| unit-tests | Run unit tests |
| integration-tests | Run integration tests |
| quick-build | Build project skipping tests, javadoc, licensing and code formatting |
| format | Format the code |

To activate a profile, add it to the maven command.
Example:
```
mvn clean install -P quick-build
```