Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bernardo-mg/base-pom
Base POM for Maven-based Java projects.
https://github.com/bernardo-mg/base-pom
maven pom template
Last synced: about 2 months ago
JSON representation
Base POM for Maven-based Java projects.
- Host: GitHub
- URL: https://github.com/bernardo-mg/base-pom
- Owner: Bernardo-MG
- License: mit
- Created: 2015-12-05T21:13:33.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-09-09T13:49:08.000Z (4 months ago)
- Last Synced: 2024-09-10T02:09:35.236Z (4 months ago)
- Topics: maven, pom, template
- Homepage:
- Size: 273 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Base POM
Parent [Maven POM][maven-pom-intro] for common Maven projects. Supports good practices such as unit plus integration testing, or dependency convergence. And this is done without adding any additional dependency to the project, only Maven plugins. This way it is useful for any kind of project, no matter what actual technologies it is based on.
[![Maven Central](https://img.shields.io/maven-central/v/com.bernardomg.maven/base-pom.svg)][maven-repo]
## Features
- Build validation.
- Maven Site reports added for the project.
- Common build and report plugins.
- Deployment plugin prepared to deploy into the distribution management repo.
- Manifest prepared with default configuration.
- Sets the JDK version to be used by the project.
- Sets the project default encoding to UTF-8.## Example
The [Library Maven Archetype][library-archetype] makes use of this POM. And extends it. This is an easy way to check how the POM can be used and modified.
## Usage
Use as a parent POM on any Maven project:
```
com.bernardomg.maven
base-pom
(Check POM or badges)```
### Installing
If needed, the project can be added to the local Maven repository with the following command:
```
mvn install
```## Collaborate
Any kind of help with the project will be well received, and there are two main ways to give such help:
- Reporting errors and asking for extensions through the issues management
- or forking the repository and extending the project### Issues management
Issues are managed at the GitHub [project issues tracker][issues], where any Github user may report bugs or ask for new features.
### Getting the code
If you wish to fork or modify the code, visit the [GitHub project page][scm], where the latest versions are always kept. Check the 'master' branch for the latest release, and the 'develop' for the current, and stable, development version.
## License
The project has been released under the [MIT License][license].
[maven-pom-intro]: https://maven.apache.org/guides/introduction/introduction-to-the-pom.html#Project_Inheritance
[library-archetype]: https://github.com/Bernardo-MG/library-maven-archetype[maven-repo]: http://mvnrepository.com/artifact/com.bernardomg.maven/base-pom
[issues]: https://github.com/Bernardo-MG/base-pom/issues
[license]: http://www.opensource.org/licenses/mit-license.php
[scm]: https://github.com/Bernardo-MG/base-pom