Skip to content

Commit

Permalink
[SELC-5607] feat: Updated dependencies for new libs
Browse files Browse the repository at this point in the history
  • Loading branch information
giampieroferrara authored Nov 21, 2024
1 parent 08c8b93 commit e6685b4
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,8 @@
"AS",
"REC",
"CON",
"PRV"
"PRV",
"GPU"
],
"type": "string"
},
Expand Down
19 changes: 11 additions & 8 deletions apps/onboarding-functions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<skipITs>true</skipITs>
<surefire-plugin.version>3.1.2</surefire-plugin.version>
<mapstruct.version>1.5.5.Final</mapstruct.version>
<commons-sdk-version>0.5.0</commons-sdk-version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -190,25 +191,27 @@
<artifactId>applicationinsights-web</artifactId>
<version>2.6.4</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.12.0</version>
</dependency>

<!-- onboardings dependency -->
<dependency>
<groupId>it.pagopa.selfcare</groupId>
<artifactId>onboarding-sdk-crypto</artifactId>
<version>0.4.1</version>
<version>${commons-sdk-version}</version>
</dependency>
<dependency>
<groupId>it.pagopa.selfcare</groupId>
<artifactId>onboarding-sdk-azure-storage</artifactId>
<version>0.4.1</version>
<version>${commons-sdk-version}</version>
</dependency>
<dependency>
<groupId>it.pagopa.selfcare</groupId>
<artifactId>onboarding-sdk-product</artifactId>
<version>0.4.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.12.0</version>
<version>${commons-sdk-version}</version>
</dependency>
</dependencies>
<build>
Expand Down
8 changes: 4 additions & 4 deletions apps/onboarding-functions/src/main/openapi/core.json
Original file line number Diff line number Diff line change
Expand Up @@ -2086,7 +2086,7 @@
"style" : "simple",
"schema" : {
"type" : "string",
"enum" : [ "AS", "CON", "GSP", "PA", "PG", "PRV", "PSP", "PT", "REC", "SA", "SCP" ]
"enum" : [ "AS", "CON", "GSP", "PA", "PG", "PRV", "PSP", "PT", "REC", "SA", "SCP", "GPU" ]
}
} ],
"responses" : {
Expand Down Expand Up @@ -2964,7 +2964,7 @@
},
"institutionType" : {
"type" : "string",
"enum" : [ "AS", "CON", "GSP", "PA", "PG", "PRV", "PSP", "PT", "REC", "SA", "SCP" ]
"enum" : [ "AS", "CON", "GSP", "PA", "PG", "PRV", "PSP", "PT", "REC", "SA", "SCP", "GPU" ]
},
"subunitCode" : {
"type" : "string"
Expand Down Expand Up @@ -3226,7 +3226,7 @@
},
"institutionType" : {
"type" : "string",
"enum" : [ "AS", "CON", "GSP", "PA", "PG", "PRV", "PSP", "PT", "REC", "SA", "SCP" ]
"enum" : [ "AS", "CON", "GSP", "PA", "PG", "PRV", "PSP", "PT", "REC", "SA", "SCP", "GPU" ]
},
"onboarding" : {
"type" : "array",
Expand Down Expand Up @@ -3440,7 +3440,7 @@
},
"institutionType" : {
"type" : "string",
"enum" : [ "AS", "CON", "GSP", "PA", "PG", "PRV", "PSP", "PT", "REC", "SA", "SCP" ]
"enum" : [ "AS", "CON", "GSP", "PA", "PG", "PRV", "PSP", "PT", "REC", "SA", "SCP", "GPU" ]
},
"ivassCode" : {
"type" : "string"
Expand Down
5 changes: 3 additions & 2 deletions apps/onboarding-ms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<skipITs>true</skipITs>
<surefire-plugin.version>3.1.2</surefire-plugin.version>
<quarkus-openapi-generator.version>2.4.1</quarkus-openapi-generator.version>
<commons-sdk-version>0.5.0</commons-sdk-version>
</properties>
<dependencyManagement>
<dependencies>
Expand Down Expand Up @@ -243,12 +244,12 @@
<dependency>
<groupId>it.pagopa.selfcare</groupId>
<artifactId>onboarding-sdk-azure-storage</artifactId>
<version>0.4.1</version>
<version>${commons-sdk-version}</version>
</dependency>
<dependency>
<groupId>it.pagopa.selfcare</groupId>
<artifactId>onboarding-sdk-product</artifactId>
<version>0.4.1</version>
<version>${commons-sdk-version}</version>
</dependency>

</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion apps/onboarding-ms/src/main/docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2192,7 +2192,7 @@
}
},
"InstitutionType" : {
"enum" : [ "PA", "PG", "GSP", "SA", "PT", "SCP", "PSP", "AS", "REC", "CON", "PRV" ],
"enum" : [ "PA", "PG", "GSP", "SA", "PT", "SCP", "PSP", "AS", "REC", "CON", "PRV", "GPU" ],
"type" : "string"
},
"LocalDateTime" : {
Expand Down
1 change: 1 addition & 0 deletions apps/onboarding-ms/src/main/docs/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1591,6 +1591,7 @@ components:
- REC
- CON
- PRV
- GPU
type: string
LocalDateTime:
format: date-time
Expand Down
2 changes: 1 addition & 1 deletion apps/onboarding-ms/src/main/openapi/core.json
Original file line number Diff line number Diff line change
Expand Up @@ -1967,7 +1967,7 @@
"style" : "simple",
"schema" : {
"type" : "string",
"enum" : [ "AS", "CON", "GSP", "PA", "PG", "PSP", "PT", "REC", "SA", "SCP", "PRV" ]
"enum" : [ "AS", "CON", "GSP", "PA", "PG", "PSP", "PT", "REC", "SA", "SCP", "PRV", "GPU" ]
}
} ],
"responses" : {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,8 @@
"AS",
"REC",
"CON",
"PRV"
"PRV",
"GPU"
],
"type": "string"
},
Expand Down
6 changes: 5 additions & 1 deletion apps/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,15 @@
<artifactId>onboarding-apps</artifactId>
<packaging>pom</packaging>

<properties>
<commons-sdk-version>0.5.0</commons-sdk-version>
</properties>

<dependencies>
<dependency>
<groupId>it.pagopa.selfcare</groupId>
<artifactId>onboarding-sdk-common</artifactId>
<version>0.4.1</version>
<version>${commons-sdk-version}</version>
</dependency>
</dependencies>

Expand Down
9 changes: 5 additions & 4 deletions test-coverage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/target/site/jacoco-aggregate/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
<sonar.coverage.exclusions>**/exception/**, **/response/**, **/request/**, **/entity/**, **/common/**, **/utils/**, **/*Constant*, **/*Config.java, **/error/**, **/filter/**, org/**</sonar.coverage.exclusions>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<commons-sdk-version>0.5.0</commons-sdk-version>
</properties>

<build>
Expand Down Expand Up @@ -77,22 +78,22 @@
<dependency>
<groupId>it.pagopa.selfcare</groupId>
<artifactId>onboarding-sdk-product</artifactId>
<version>0.4.1</version>
<version>${commons-sdk-version}</version>
</dependency>
<dependency>
<groupId>it.pagopa.selfcare</groupId>
<artifactId>onboarding-sdk-common</artifactId>
<version>0.4.1</version>
<version>${commons-sdk-version}</version>
</dependency>
<dependency>
<groupId>it.pagopa.selfcare</groupId>
<artifactId>onboarding-sdk-azure-storage</artifactId>
<version>0.4.1</version>
<version>${commons-sdk-version}</version>
</dependency>
<dependency>
<groupId>it.pagopa.selfcare</groupId>
<artifactId>onboarding-sdk-crypto</artifactId>
<version>0.4.1</version>
<version>${commons-sdk-version}</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit e6685b4

Please sign in to comment.