Nort Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 11: Line 11:
=Snapshot Version=
=Snapshot Version=


A ''snapshot version'' is a table A ''snapshot version'' associated with an artifact indicates that the artifact was built based on source code under development. Normally, a "snapshot version" artifact should never be used outside the development process. The associated "snapshot releases" are necessary when dependent projects under development, themselves having a snapshot version, require new functionality or defect fixes of their dependencies. In that situation, the dependency releases a snapshot release, the dependent updates its metadata to point to the newly released dependency snapshot release, and its development continues. When the dependent is ready for a dot release, first the dependencies are "dot released" and then the dependent is "dot released". NORT provides logic to automate these workflows.
A ''snapshot version'' is also label designating a specific point in the evolution of a software project, indicating that the source code tree is under development at that point in time. Example: "1.2.3-SNAPSHOT-5". Normally, a "snapshot versioned" artifact should never be used outside the development process. The associated snapshot releases are necessary when dependent projects under development, themselves having a snapshot version, require new functionality or defect fixes of their dependencies. In that situation, the dependency releases a snapshot release, the dependent updates its metadata to point to the newly released dependency snapshot release, and its development continues. When the dependent is ready for a dot release, first the dependencies are "dot released" and then the dependent is "dot released". NORT provides logic to automate these workflows.


=Current Version=
=Current Version=

Revision as of 20:36, 16 November 2016

Internal

Overview

Dot Version

A dot version is a label designating a specific point in the evolution of a software project that does not contain a "SNAPSHOT" fragment. Example: "1.2.3". A dot version associated with an artifact indicates that the artifact was built based on source code that passed all the tests and it is ready for public consumption.

Snapshot Version

A snapshot version is also label designating a specific point in the evolution of a software project, indicating that the source code tree is under development at that point in time. Example: "1.2.3-SNAPSHOT-5". Normally, a "snapshot versioned" artifact should never be used outside the development process. The associated snapshot releases are necessary when dependent projects under development, themselves having a snapshot version, require new functionality or defect fixes of their dependencies. In that situation, the dependency releases a snapshot release, the dependent updates its metadata to point to the newly released dependency snapshot release, and its development continues. When the dependent is ready for a dot release, first the dependencies are "dot released" and then the dependent is "dot released". NORT provides logic to automate these workflows.

Current Version

The current version of the project is the <version> information written into the POM file in the work are of a project.


The current version is always a snapshot version, as projects are continuously evolving and they are in principle open for new functionality and defect fixes.

A version becomes a dot version during the release process. However, a dot version never lasts in a work area, it is briefly used to build the corresponding artifacts (sources and binaries), which are by default installed in their corresponding repositories, as part of the release process. If all goes well the current version is immediately upgraded to the next logical SNAPSHOT. If something goes wrong, the current version remains set to the SNAPSHOT that failed to become a dot version, until the developer fixes the problem and repeats, successfully, the release process.

Released Version

A version becomes a released version when an artifact associated with it is made available in an artifact repository. Normally, only artifacts associated with dot versions should be publicly available.

Release

A release consists in a sequence of interactions with the local project work area, the build system metadata, and various external source code and binary repositories. All types of releases end with the creation of a set of valid release artifacts, which are written into the local work area. By default, if all goes well, the release continues by default with the publishing of the artifacts in their corresponding repositories and, possibly, with the installation of the binaries in a location that makes them available for use. At the end of the release process, the work area is automatically updated to the next snapshot current version.

Release Types

Major

Minor

Patch

Snapshot

Custom

For syntax details see the release command.

The Release Sequence

The release sequence consists in the following steps:

  1. The local workarea version metadata is tentatively incremented according to the rules described in the "Release Types" section.
  2. All tests are executed, with the new version metadata in place.
  3. If at least one test fails, NORT restores the previous release metadata state, reports and fails. The work area is restored to the exact state it was found before the release sequence was initiated.
  4. If all tests pass, the artifacts corresponding to the release are built and installed in the corresponding artifact repositories. Usually, JARs are installed under their corresponding artifact directories and binary releases are installed under their corresponding "release" modules, both in the local Maven repository. For more details about artifacts and what repositories are they installed into, see "Release Artifacts" section.
  5. The installation sequence is automatically initiated, unless "release" command was configured to stop after execution.

Release Artifacts

A release my produce one of the following artifact types:

JAR Libraries

Binary Distributions

Binary distributions are usually ZIP file containing everything an application needs in order to be installed on a new system. The binary distribution include libraries, wrapper scripts, release notes, documentation and possibly other artifacts.

The recommended technique to build complex binary distributions is to add a dedicated "release" module to the project and let the Maven assembly plug-in to handle the process. The details are described in the "Building a Maven Complex Release Artifact" article.

If a project has a binary distribution that is built by Maven, NORT will publish it in the local Maven repository, under the "release" module of the project.

Binary distributions may be built using a mechanism different from Maven, but irrespective to how the artifact is built, the release sequence ends in its publishing them in some form of local binary repository.

The Build Sequence

The Installation Sequence

The installation sequence consists in the following steps:

  1. a

New Project Initialization

The command that carries out a new project initialization is nort initialize.

TODO: