exasol / exasol-version-number-provider

This java package gives you access to the latest available Exasol docker-db version number.
MIT License
0 stars 1 forks source link
exasol exasol-integration integration-testing java version-number

Exasol Version Number Provider

Build Status Maven Central – exasol-version-number-provider

Quality Gate Status

Security Rating Reliability Rating Maintainability Rating Technical Debt

Code Smells Coverage Duplicated Lines (%) Lines of Code

This java package gives you access to the latest available Exasol docker-db version number.

Usage

final ExasolVersionNumberProvider versionNumberProvider
  = new ExasolVersionNumberProviderFactory().buildExasolVersionNumberProvider();
final String latestVersion = versionNumberProvider.getLatestReleaseNumber();

You can also get the latest version for a specific major or minor release using getLatestReleaseForMajor(...) or getLatestReleaseForMinor(...).

Excluded Versions

Please note that pre-release versions are excluded when finding the latest version.

All versions that contain the strings prerelease, alpha, beta or rc (release candidate) count as pre-releases.

Installation

Click on maven central badge (on the top of this page), select version and copy the dependency declaration for your build system.

Additional Information