Skip to content

Commit

Permalink
Merge branch 'main' into PPANTT-81-feat-add-ec-rest-client
Browse files Browse the repository at this point in the history
  • Loading branch information
alessio-cialini authored Sep 23, 2024
2 parents 0c4e248 + 70465b7 commit 9e59698
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code_review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion helm/values-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion helm/values-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion helm/values-uat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions openapi/openapi.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

35 changes: 34 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@

<groupId>it.gov.pagopa</groupId>
<artifactId>payment-options-service</artifactId>
<version>0.0.1</version>
<version>0.1.0</version>

<properties>
<jacoco.version>0.8.7</jacoco.version>
<compiler-plugin.version>3.13.0</compiler-plugin.version>
<maven.compiler.release>17</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -110,6 +111,11 @@
<scope>test</scope>
<version>${wiremock.version}</version>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-jacoco</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5-mockito</artifactId>
Expand Down Expand Up @@ -176,6 +182,33 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<configuration>
<excludes>
</excludes>
</configuration>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<exclClassLoaders>*QuarkusClassLoader</exclClassLoaders>
<destFile>${project.build.directory}/jacoco-quarkus.exec</destFile>
<append>true</append>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
Expand Down

0 comments on commit 9e59698

Please sign in to comment.