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
- Host: GitHub
- URL: https://github.com/codbex/codbex-platform-parent
- Owner: codbex
- License: epl-2.0
- Created: 2024-05-14T12:04:08.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2026-03-05T18:27:59.000Z (about 1 month ago)
- Last Synced: 2026-03-05T21:43:21.698Z (about 1 month ago)
- Topics: infrastructure
- Homepage:
- Size: 318 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```