Versions Compared

Key

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

...

The js7-inventory-schemas repository holds the RAML source of for the JS7 JSON schemas used for the JS7 inventory objects.

...

js7-inventory-schemas is a standard maven project and can be build built with maven. At the time of writing SOS uses maven version 3.3.9.

...

Determine the latest tagged version and store it to as a local variable.

Code Block
languagebash
titleRetrieve Latest Tagged Version
tag=$(git describe --tags `git rev-list --tags --max-count=1`)

Checkout the latest version using the previously stored variable to a local branch "latest" local branch using the variable you have previously stored.

Code Block
languagebash
titleCheckout Latest
git checkout $tag -b latest

...