From 387f5d6f1aba8751b28e94d84a48253532a2211b Mon Sep 17 00:00:00 2001 From: Piotr Marcinkiewicz Date: Tue, 6 Jul 2021 10:38:25 +0200 Subject: Change logback version to 1.3.0-alpha4 - Change logback version in order to remove checker-framework dependency. - Change healthcheck script to sh (bash is unavailable in container) - Remove dl.bintray.com repository Issue-ID: DCAEGEN2-2851 Signed-off-by: Piotr Marcinkiewicz Change-Id: Id947029c719ac3b6fc3456dbd1d36e83964d8729 --- Changelog.md | 1 + pom.xml | 20 +++----------------- .../hv-collector-main/src/main/docker/healthcheck.sh | 2 +- 3 files changed, 5 insertions(+), 18 deletions(-) diff --git a/Changelog.md b/Changelog.md index 204b60f5..e84c7177 100644 --- a/Changelog.md +++ b/Changelog.md @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [1.9.0] - [DCAEGEN2-2420](https://jira.onap.org/browse/DCAEGEN2-2420) [INT-1864](https://jira.onap.org/browse/INT-1864) - Change openjdk baseOS img to integration-java11 - [DCAEGEN2-2630] (https://jira.onap.org/browse/DCAEGEN2-2630) - Update SDK version to 1.8.4 + - [DCAEGEN2-2851](https://jira.onap.org/browse/DCAEGEN2-2851) - Remove checker-framework from HV-VES dependencies ## [1.8.0] - 31/03/2021 - [DCAEGEN2-2701](https://jira.onap.org/browse/DCAEGEN2-2701) - Add stndDefined domain and stndDefined routing diff --git a/pom.xml b/pom.xml index 0b9ab42e..8ab14c6e 100644 --- a/pom.xml +++ b/pom.xml @@ -60,7 +60,7 @@ 3.1.2 0.34.1 30.1.1-jre - 1.3.0-alpha5 + 1.3.0-alpha4 2.0.0-alpha1 2020.0.5 2.7.0 @@ -383,24 +383,10 @@ - - arturbosch-code-analysis - arturbosch-code-analysis (for detekt) - https://dl.bintray.com/arturbosch/code-analysis/ - default - - true - never - - - false - never - - kotlinx-repository kotlinx-repository - https://dl.bintray.com/kotlin/kotlinx/ + https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven true never @@ -416,7 +402,7 @@ kotlinx-repository kotlinx-repository - https://dl.bintray.com/kotlin/kotlinx/ + https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven/ true never diff --git a/sources/hv-collector-main/src/main/docker/healthcheck.sh b/sources/hv-collector-main/src/main/docker/healthcheck.sh index db62eece..b2f54e56 100755 --- a/sources/hv-collector-main/src/main/docker/healthcheck.sh +++ b/sources/hv-collector-main/src/main/docker/healthcheck.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh curl -f http://localhost:${VESHV_HEALTH_CHECK_API_PORT:-6060}/health/ready || exit 1 nc -vz localhost ${VESHV_LISTEN_PORT:-6061} || exit 2 -- cgit 1.2.3-korg