From 4a9f2d3b2b2c2d25d35073bc4501138769ee8a5c Mon Sep 17 00:00:00 2001 From: chandresh-pancholi Date: Thu, 22 Dec 2022 03:47:15 +0530 Subject: [PATCH] updating litmus client version --- Dockerfile.core | 4 ++-- Dockerfile.proxy | 4 ++-- litmus-cache/pom.xml | 4 ++-- litmus-client/pom.xml | 6 +++--- litmus-client/src/main/resources/app.properties | 2 +- litmus-core/pom.xml | 12 ++++++------ litmus-db/pom.xml | 6 +++--- litmus-liquibase/pom.xml | 4 ++-- litmus-mock/pom.xml | 8 ++++---- litmus-model/pom.xml | 4 ++-- litmus-proxy/pom.xml | 10 +++++----- litmus-util/pom.xml | 4 ++-- pom.xml | 2 +- 13 files changed, 35 insertions(+), 35 deletions(-) diff --git a/Dockerfile.core b/Dockerfile.core index ef0d273..7a86f00 100644 --- a/Dockerfile.core +++ b/Dockerfile.core @@ -1,5 +1,5 @@ FROM 193044292705.dkr.ecr.ap-south-1.amazonaws.com/common/maven:3.8.3-openjdk-17-slim as builder -ARG ARTIFACT_VERSION=2.0.5-RELEASE +ARG ARTIFACT_VERSION=2.0.6-RELEASE RUN mkdir -p /build WORKDIR /build COPY . /build @@ -7,7 +7,7 @@ RUN mvn clean install RUN mvn clean verify -DskipTests -Dartifact.version=${ARTIFACT_VERSION} FROM 193044292705.dkr.ecr.ap-south-1.amazonaws.com/common/openjdk:17-slim-bullseye -ARG ARTIFACT_VERSION=2.0.5-RELEASE +ARG ARTIFACT_VERSION=2.0.6-RELEASE RUN mkdir -p /usr/local RUN apt-get update -y && apt-get -y install fontconfig libpng-dev WORKDIR /usr/local/ diff --git a/Dockerfile.proxy b/Dockerfile.proxy index 0f0423b..ce4a58f 100644 --- a/Dockerfile.proxy +++ b/Dockerfile.proxy @@ -1,5 +1,5 @@ FROM 193044292705.dkr.ecr.ap-south-1.amazonaws.com/common/maven:3.8.3-openjdk-17-slim as builder -ARG ARTIFACT_VERSION=2.0.5-RELEASE +ARG ARTIFACT_VERSION=2.0.6-RELEASE RUN mkdir -p /build WORKDIR /build COPY . /build @@ -7,7 +7,7 @@ RUN mvn clean install -DskipTests RUN mvn clean verify -DskipTests -Dartifact.version=${ARTIFACT_VERSION} FROM 193044292705.dkr.ecr.ap-south-1.amazonaws.com/common/openjdk:17-slim-bullseye -ARG ARTIFACT_VERSION=2.0.5-RELEASE +ARG ARTIFACT_VERSION=2.0.6-RELEASE RUN mkdir -p /usr/local RUN apt-get update -y && apt-get -y install fontconfig libpng-dev WORKDIR /usr/local/ diff --git a/litmus-cache/pom.xml b/litmus-cache/pom.xml index 7534b8c..c9bcd8e 100644 --- a/litmus-cache/pom.xml +++ b/litmus-cache/pom.xml @@ -4,11 +4,11 @@ litmus com.navi.medici - 2.0.5-RELEASE + 2.0.6-RELEASE litmus-cache - 2.0.5-RELEASE + 2.0.6-RELEASE jar litmus-cache diff --git a/litmus-client/pom.xml b/litmus-client/pom.xml index 9458000..dc391b9 100644 --- a/litmus-client/pom.xml +++ b/litmus-client/pom.xml @@ -5,11 +5,11 @@ litmus com.navi.medici - 2.0.5-RELEASE + 2.0.6-RELEASE litmus-client - 2.0.5-RELEASE + 2.0.6-RELEASE jar litmus-client @@ -43,7 +43,7 @@ com.navi.medici litmus-model - 2.0.5-RELEASE + 2.0.6-RELEASE diff --git a/litmus-client/src/main/resources/app.properties b/litmus-client/src/main/resources/app.properties index c937dcb..6907184 100644 --- a/litmus-client/src/main/resources/app.properties +++ b/litmus-client/src/main/resources/app.properties @@ -1 +1 @@ -litmus.client.version=2.0.5-RELEASE \ No newline at end of file +litmus.client.version=2.0.6-RELEASE \ No newline at end of file diff --git a/litmus-core/pom.xml b/litmus-core/pom.xml index 4888f08..22644b2 100644 --- a/litmus-core/pom.xml +++ b/litmus-core/pom.xml @@ -5,11 +5,11 @@ litmus com.navi.medici - 2.0.5-RELEASE + 2.0.6-RELEASE litmus-core - 2.0.5-RELEASE + 2.0.6-RELEASE jar litmus-core @@ -31,25 +31,25 @@ com.navi.medici litmus-model - 2.0.5-RELEASE + 2.0.6-RELEASE com.navi.medici litmus-db - 2.0.5-RELEASE + 2.0.6-RELEASE com.navi.medici litmus-cache - 2.0.5-RELEASE + 2.0.6-RELEASE com.navi.medici litmus-util - 2.0.5-RELEASE + 2.0.6-RELEASE diff --git a/litmus-db/pom.xml b/litmus-db/pom.xml index 0ca6445..82a8aa3 100644 --- a/litmus-db/pom.xml +++ b/litmus-db/pom.xml @@ -4,11 +4,11 @@ litmus com.navi.medici - 2.0.5-RELEASE + 2.0.6-RELEASE litmus-db - 2.0.5-RELEASE + 2.0.6-RELEASE jar litmus-db @@ -27,7 +27,7 @@ com.navi.medici litmus-model - 2.0.5-RELEASE + 2.0.6-RELEASE diff --git a/litmus-liquibase/pom.xml b/litmus-liquibase/pom.xml index 7ad59f9..82bd2aa 100644 --- a/litmus-liquibase/pom.xml +++ b/litmus-liquibase/pom.xml @@ -4,11 +4,11 @@ litmus com.navi.medici - 2.0.5-RELEASE + 2.0.6-RELEASE litmus-liquibase - 2.0.5-RELEASE + 2.0.6-RELEASE jar litmus-liquibase diff --git a/litmus-mock/pom.xml b/litmus-mock/pom.xml index 5da41b7..fabc50d 100644 --- a/litmus-mock/pom.xml +++ b/litmus-mock/pom.xml @@ -4,11 +4,11 @@ litmus com.navi.medici - 2.0.5-RELEASE + 2.0.6-RELEASE litmus-mock - 2.0.5-RELEASE + 2.0.6-RELEASE jar litmus-mock @@ -16,13 +16,13 @@ com.navi.medici litmus-model - 2.0.5-RELEASE + 2.0.6-RELEASE com.navi.medici litmus-client - 2.0.5-RELEASE + 2.0.6-RELEASE diff --git a/litmus-model/pom.xml b/litmus-model/pom.xml index 875d8c4..9091c36 100644 --- a/litmus-model/pom.xml +++ b/litmus-model/pom.xml @@ -5,11 +5,11 @@ litmus com.navi.medici - 2.0.5-RELEASE + 2.0.6-RELEASE litmus-model - 2.0.5-RELEASE + 2.0.6-RELEASE jar litmus-model diff --git a/litmus-proxy/pom.xml b/litmus-proxy/pom.xml index bb1da7a..5b111f0 100644 --- a/litmus-proxy/pom.xml +++ b/litmus-proxy/pom.xml @@ -4,11 +4,11 @@ litmus com.navi.medici - 2.0.5-RELEASE + 2.0.6-RELEASE litmus-proxy - 2.0.5-RELEASE + 2.0.6-RELEASE jar litmus-proxy @@ -17,19 +17,19 @@ com.navi.medici litmus-model - 2.0.5-RELEASE + 2.0.6-RELEASE com.navi.medici litmus-client - 2.0.5-RELEASE + 2.0.6-RELEASE com.navi.medici litmus-util - 2.0.5-RELEASE + 2.0.6-RELEASE diff --git a/litmus-util/pom.xml b/litmus-util/pom.xml index fe790ef..b03018f 100644 --- a/litmus-util/pom.xml +++ b/litmus-util/pom.xml @@ -4,11 +4,11 @@ litmus com.navi.medici - 2.0.5-RELEASE + 2.0.6-RELEASE litmus-util - 2.0.5-RELEASE + 2.0.6-RELEASE litmus-util diff --git a/pom.xml b/pom.xml index de8c0a9..85c70c9 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 com.navi.medici litmus - 2.0.5-RELEASE + 2.0.6-RELEASE pom litmus