Nova Ordis Utilities Version Metadata Handling

From NovaOrdis Knowledge Base
Revision as of 21:04, 26 November 2016 by Ovidiu (talk | contribs)
Jump to navigation Jump to search

Internal

Overview

The mechanism relies on a project build pattern and a set of APIs to expose the version and release data of application in a standard manner. The mechanism is used by most of the Nova Ordis projects. clad builds upon it and exposes the version and release metadata as result of the "version" command, which is available by default to all clad-based applications.

The mechanism relies on the presence of a "VERSION" metadata file in the application's classpath. VersionUtilities.getVersion() and VersionUtilities.getReleaseDate() can be used as top-level API to locate, process and display the metadata. In case the metadata file is not found, the both methods log the condition using SLF4J warn() and return null.

In order to insure that the artifacts are built to contain version metadata, follow the instructions provided in the "Build Infrastructure Configuration" section, below.

Code

https://github.com/NovaOrdis/novaordis-utilities/blob/master/src/main/java/io/novaordis/utilities/version/VersionUtilities.java

Build Infrastructure Configuration

VERSION File

Place a VERSION file in the src/main/resources directory of the project. It should have the following content:

version=${version}
release_date=${release_date}

If the project was initialized with nort, this should have been done automatically already. For more details see "New Project Initialization with NORT".

${version} and ${release_date} in the In-Line Documentation of the Project

Since we are going to use the Maven resource plugin to filter resources and replace variables, you can also use ${version} and ${release_date} in the in-line documentation, for example the main USAGE file. Example:

myApp version ${version} released on ${release_date}
...

Define maven.build.timestamp.format and release_date

Make sure your POM file contains the definition of the build timestamp format and release_date, as follows:

    ...
    <properties>
        <maven.build.timestamp.format>MM/dd/yy</maven.build.timestamp.format>
        <release_date>${maven.build.timestamp}</release_date>
    </properties>
    ...

The "version" property is available by default.

Configure the Maven Resources Plugin

Make sure the Maven Resources Plugin is available and configured as described here: variable substitution in resource files.

Essentially, we want:

<filtering>true</filtering>

Usage

When all of the above are completed, the final artifact should contain correctly resolved ${version} and ${release_date} in all resources that have been filtered.

To get the version and release date programmatically, use the following API.

The utility code can be used as part of clad or directly.