Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

NOTE: This Plugin is decommissioned as of the start of the El Alto release.

Overview

Per the Independent Versioning and Release Process, each team is to declare their release artifact versions in the ONAP version manifest, located at https://git.onap.org/integration/tree/version-manifest/src/main/resources.

The ONAP Integration team is providing has provided a Maven plugin to help individual projects detect when their external (cross-project) dependencies have become out of date.  Each project team should use this plugin periodically to identify any out-of-date dependencies that should be upgraded.

The version manifest CSV itself is compiled packaged into the the plugin artifact, so that we can identify the exact manifest version using the plugin version number.

Running the Plugin

To use the latest available Version Manifest plugin, run the following command:

Code Block
mvn org.onap.integration:version-manifest:version-check

The most recent plugin snapshot version containing the latest java-manifest.csv file can be found by checking Nexus at https://nexus.onap.org/#nexus-search;gav~org.onap.integration~version-manifest~~~ (in the Snapshots repository)

You can then use that To use a specific version (e.g. 4.0.1.0-SNAPSHOT) of the Version Manifest plugin , run by running the following:

Code Block
mvn org.onap.integration:version-manifest:4.0.1.0-SNAPSHOT:version-check

These assume that you have the ONAP nexus repos defined in your ~/m2/settings.xml so that Maven can download the plugin artifacts.

Interpreting the Output

Here is a sample output provided by the plugin:

Code Block
linenumberstrue
[INFO] --- version-manifest:0.1.0-SNAPSHOT:version-check (default-cli) @ clds ---
[INFO] Manifest version: 2017-09-06T20:21:07+0000 6fd61b5fa717862fa554fa4c4a076f56be3aaac1 ssh://gerritecomp-jobbuilder@gerrit.onap.org:29418/integration 3fdf98d67f6c8a24c535635599d380a104bd93f2 2017-09-06T11:42:50-0700
[INFO] 
[WARNING] The following dependencies should be updated to match the version manifest:
[WARNING]   org.onap.oparent:oparent                                  1.0.0-SNAPSHOT -> 0.1.01
[INFOWARNING] 
[WARNING] The following dependencies are missing in the version manifest:
[WARNING]   org.onap.oparent:checkstyle                               1.0.0-SNAPSHOT ->     ?
[WARNING]   org.onap.policy.common:ONAP-Logging                                1.1.0 ->     ?
[WARNING]   org.onap.policy.engine:ControlloopPolicy                  1.1.0-SNAPSHOT ->     ?
[WARNING]   org.onap.policy.engine:PolicyEngineAPI                             1.1.0 ->     ?
[INFOWARNING] 
 

Line 1 shows the version of the version-manifest plugin that was invoked.  Here it is "0.1.0-SNAPSHOT".

...