Versions Compared

Key

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

Table of Contents

Introduction

The sos-components repository hold holds the source code for the JS7 REST API, the JS7 JITL Jobs and much more.

Prerequisites

sos-components is a standard maven project and can be build built with maven. SOS currently uses maven version 3.3.9.

Clone Repository

Navigate to your desired destination folder and clone the repository from the github page.GitHub:

Code Block
languagebash
git clone https://github.com/sos-berlin/sos-components

Checkout

Checkout Tagged Version

Code Block
languagebash
titleRetrieve list of available tagged versions
git fetch --all --tags
Code Block
languagebash
titleCheckout a desired version to a local branch
git checkout tags/[desired version] -b [desired local branch name]
e.g.
git checkout tags/v2.0.0 -b release/v2.0.0

Checkout Latest Tagged Version

Determine the latest tagged version and store it to 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 as a "latest" local branch using the variable you have just stored variable to a local branch "latest".

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

Build

From the root of the checked out project call:

...