Skip to content

Commit

Permalink
Draft.
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniotarricone committed Mar 28, 2024
1 parent 4a90e42 commit 6219c4a
Show file tree
Hide file tree
Showing 65 changed files with 2,783 additions and 4,480 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/post-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
semantic_version: 19
branch: main
branch: ${{ github.ref_name }}
extra_plugins: |
@semantic-release/[email protected]
@semantic-release/[email protected]
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
semantic_version: 19
branch: main
branch: ${{ github.ref_name }}
extra_plugins: |
@semantic-release/[email protected]
@semantic-release/[email protected]
Expand Down
24 changes: 24 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,26 @@
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-security-keyvault-keys</artifactId>
<version>4.8.1</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob</artifactId>
<version>12.25.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
<version>1.11.2</version>
</dependency>
<dependency>
<groupId>io.smallrye.reactive</groupId>
<artifactId>mutiny-reactor</artifactId>
</dependency>
</dependencies>

<repositories>
Expand Down Expand Up @@ -212,9 +232,12 @@
<groupId>it.pagopa.maven</groupId>
<artifactId>depcheck</artifactId>
<version>${depcheck-plugin.version}</version>
<!--
<executions>
<execution>
-->
<!-- after validate -->
<!--
<phase>validate</phase>
<goals>
<goal>verify</goal>
Expand All @@ -226,6 +249,7 @@
</configuration>
</execution>
</executions>
-->
</plugin>
<!-- Verifies some quality rules -->
<plugin>
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/it/pagopa/swclient/mil/auth/AuthErrorCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ public final class AuthErrorCode {
public static final String AZURE_ACCESS_TOKEN_IS_NULL = MODULE_ID + "000029";
public static final String ERROR_FROM_AZURE = MODULE_ID + "00002A";
public static final String FISCAL_CODE_MUST_MATCH_REGEXP = MODULE_ID + "00002B";
public static final String INVALID_KID = MODULE_ID + "00002C";
public static final String CLIENT_DESERIALIZATION_ERROR = MODULE_ID + "00002D";

/**
*
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 6219c4a

Please sign in to comment.