/pdsen-maven-parent

PDS Engineering Node Maven Parent POM

OtherNOASSERTION

PDS Engineering Node Maven Parent POM

This project is simply the parent project object model (POM) for Planetary Data System projects using Apache Maven or compatible project management tools. It includes some common repositories, distribution management, plugins, and reporting information all gov.nasa.pds projects inherit and take advantage of.

See pom.xml for more information.

Getting Started

To configure your project to use the PDS Maven Parent, add the <parent> designation to your own POM:

<parent>
    <groupId>gov.nasa</groupId>
    <artifactId>pds</artifactId>
    <version>{VERSION}</version>
</parent>

To get the latest version, see what has been deployed to the Maven Central Repository.

👥 Contributing

Within the NASA Planetary Data System, we value the health of our community as much as the code. Towards that end, we ask that you read and practice what's described in these documents:

  • Our contributor's guide delineates the kinds of contributions we accept.
  • Our code of conduct outlines the standards of behavior we practice and expect by everyone who participates with our software.

Release and Deployment

This repository on GitHub takes advantage of GitHub Actions to perform routine, automatic deployment of the parent POM. The instructions that follow below remain in order to describe how to do a release manually.

In the event updates are made to the POM and they are ready for release, perform the following steps:

  1. Version the POM to a new version.
$ VERSION=1.1.0
$ mvn versions:set -DnewVersion=$VERSION
$ git add pom.xml
$ git commit -m "release v$VERSION"
  1. Deploy to Sonatype (Maven Central).
$ # For operational release
$ mvn clean site deploy -P release
$
$ # For snapshot
$ mvn clean site deploy
  1. Tag a release in Github and push changes to main
$ git tag v${VERSION} -m "[RELEASE] pdsen-maven-parent v$VERSION" -m "See [CHANGELOG](https://github.com/NASA-PDS/pdsen-maven-parent/blob/main/CHANGELOG.md) for more details."
$ git push --tags
$ git push origin main
  1. Back to development version
$ VERSION=1.12.0-SNAPSHOT
$ mvn versions:set -DnewVersion=$VERSION
$ git add pom.xml
$ git commit -m "start development on $VERSION"

📃 License

The project is licensed under the Apache version 2 license. Or it isn't. Change this after consulting with your lawyers.