Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/exasol/exasol-version-number-provider
This java package gives you access to the latest available Exasol docker-db version number.
https://github.com/exasol/exasol-version-number-provider
exasol exasol-integration integration-testing java version-number
Last synced: 7 days ago
JSON representation
This java package gives you access to the latest available Exasol docker-db version number.
- Host: GitHub
- URL: https://github.com/exasol/exasol-version-number-provider
- Owner: exasol
- License: mit
- Created: 2020-09-28T13:37:31.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-11-20T15:01:03.000Z (about 1 year ago)
- Last Synced: 2024-11-14T05:34:30.238Z (2 months ago)
- Topics: exasol, exasol-integration, integration-testing, java, version-number
- Language: Java
- Homepage:
- Size: 61.5 KB
- Stars: 0
- Watchers: 9
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Exasol Version Number Provider
[![Build Status](https://github.com/exasol/exasol-version-number-provider/actions/workflows/ci-build.yml/badge.svg)](https://github.com/exasol/exasol-version-number-provider/actions/workflows/ci-build.yml)
[![Maven Central – exasol-version-number-provider](https://img.shields.io/maven-central/v/com.exasol/exasol-version-number-provider)](https://search.maven.org/artifact/com.exasol/exasol-version-number-provider)[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Aexasol-version-number-provider&metric=alert_status)](https://sonarcloud.io/dashboard?id=com.exasol%3Aexasol-version-number-provider)
[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Aexasol-version-number-provider&metric=security_rating)](https://sonarcloud.io/dashboard?id=com.exasol%3Aexasol-version-number-provider)
[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Aexasol-version-number-provider&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=com.exasol%3Aexasol-version-number-provider)
[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Aexasol-version-number-provider&metric=sqale_rating)](https://sonarcloud.io/dashboard?id=com.exasol%3Aexasol-version-number-provider)
[![Technical Debt](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Aexasol-version-number-provider&metric=sqale_index)](https://sonarcloud.io/dashboard?id=com.exasol%3Aexasol-version-number-provider)[![Code Smells](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Aexasol-version-number-provider&metric=code_smells)](https://sonarcloud.io/dashboard?id=com.exasol%3Aexasol-version-number-provider)
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Aexasol-version-number-provider&metric=coverage)](https://sonarcloud.io/dashboard?id=com.exasol%3Aexasol-version-number-provider)
[![Duplicated Lines (%)](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Aexasol-version-number-provider&metric=duplicated_lines_density)](https://sonarcloud.io/dashboard?id=com.exasol%3Aexasol-version-number-provider)
[![Lines of Code](https://sonarcloud.io/api/project_badges/measure?project=com.exasol%3Aexasol-version-number-provider&metric=ncloc)](https://sonarcloud.io/dashboard?id=com.exasol%3Aexasol-version-number-provider)This java package gives you access to the latest available Exasol docker-db version number.
## Usage
```java
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
* [Changelog](doc/changes/changelog.md)
* [Dependencies](dependencies.md)