diff --git a/.github/workflows/code_review.yml b/.github/workflows/code_review.yml index 423ef6f..48787c1 100644 --- a/.github/workflows/code_review.yml +++ b/.github/workflows/code_review.yml @@ -41,8 +41,8 @@ jobs: sonar_token: ${{ secrets.SONAR_TOKEN }} project_key: ${{env.PROJECT_KEY}} java_version: 17 - coverage_exclusions: "**/config/*,**/*Mock*,**/models/**,**/entity/*,**/exception/**,**/App.java" - cpd_exclusions: "**/models/**,**/entity/*" + coverage_exclusions: "**/config/*,**/*Mock*,**/models/**,**/clients/model/**,**/entity/*,**/exception/**,**/resources/Generic.java,**/App.java" + cpd_exclusions: "**/models/**,**/clients/model/**,**/entity/*" coverage_report_path: "./target/jacoco-report/jacoco.xml" # smoke-test: diff --git a/CODEOWNERS b/CODEOWNERS index 5eca2e9..2fe107d 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1,3 +1,3 @@ # see https://help.github.com/en/articles/about-code-owners#example-of-a-codeowners-file -* @pagopa/pagopa-team-core @pagopa/pagopa-team-core-associates +* @pagopa/pagopa-team-core @alessio-cialini @svariant @gioelemella diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 1309150..fbf7936 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-payment-options description: Microservice that handles services for payment options type: application -version: 0.45.0 -appVersion: 0.4.2 +version: 0.46.0 +appVersion: 0.1.0 dependencies: - name: microservice-chart version: 5.9.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index dee4043..3b5273b 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "print-payment-options-service" image: repository: ghcr.io/pagopa/pagopa-payment-options - tag: "0.4.2" + tag: "0.1.0" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index 8061492..20a6329 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "print-payment-notice-generator" image: repository: ghcr.io/pagopa/pagopa-print-payment-notice-generator - tag: "0.4.2" + tag: "0.1.0" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index 4335ba0..d5863b3 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "print-payment-notice-generator" image: repository: ghcr.io/pagopa/pagopa-print-payment-notice-generator - tag: "0.4.2" + tag: "0.1.0" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index e69de29..8b13789 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -0,0 +1 @@ + diff --git a/pom.xml b/pom.xml index 03fa3fe..cda5e19 100644 --- a/pom.xml +++ b/pom.xml @@ -5,9 +5,10 @@ it.gov.pagopa payment-options-service - 0.0.1 + 0.1.0 + 0.8.7 3.13.0 17 UTF-8 @@ -110,6 +111,11 @@ test ${wiremock.version} + + io.quarkus + quarkus-jacoco + test + io.quarkus quarkus-junit5-mockito @@ -176,6 +182,33 @@ + + org.jacoco + jacoco-maven-plugin + ${jacoco.version} + + + + + + + + prepare-agent + + + + default-prepare-agent + + prepare-agent + + + *QuarkusClassLoader + ${project.build.directory}/jacoco-quarkus.exec + true + + + +