|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 | <artifactId>verificafirma-eidas-beans</artifactId>
|
5 |
| - <version>1.2.1-SNAPSHOT</version> |
| 5 | + <version>1.7.1-SNAPSHOT</version> |
6 | 6 | <packaging>jar</packaging>
|
7 | 7 | <name>Verifica firma eidas beans</name>
|
8 |
| - <description>Libreria contenente i beans che integrano i modelli pojo per la verifica firma con microservizio eidas</description> |
| 8 | + <description>Libreria contenente i beans che integrano i modelli pojo per la verifica firma con microservizio eidas</description> |
9 | 9 |
|
10 | 10 | <parent>
|
11 | 11 | <groupId>it.eng.parer</groupId>
|
12 | 12 | <artifactId>parer-pom</artifactId>
|
13 |
| - <version>3.0.17</version> |
| 13 | + <version>4.2.0</version> |
14 | 14 | </parent>
|
15 | 15 |
|
16 | 16 | <properties>
|
17 | 17 | <skipTests>true</skipTests>
|
18 | 18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
19 | 19 | <project.encoding>UTF-8</project.encoding>
|
20 |
| - <dss.version>5.9</dss.version> |
21 |
| - <!-- ereditata la versione utilizza da springboot dal progetto (verifica-firma-eidas) |
22 |
| - di cui prima il model era un sottomodulo--> |
23 |
| - <javax.validation.version>2.0.1.Final</javax.validation.version> |
| 20 | + <dss.version>5.12.1</dss.version> |
| 21 | + <!-- ereditata la versione utilizza da springboot 3.x dal progetto (crypto) di cui prima era un sottomodulo--> |
| 22 | + <jakarta.validation-api.version>3.0.2</jakarta.validation-api.version> |
24 | 23 | </properties>
|
25 | 24 |
|
26 | 25 | <scm>
|
27 |
| - <developerConnection>scm:git:https://github.com/RegioneER/parer.sacer.verificafirma-eidas.beans.git</developerConnection> |
| 26 | + <developerConnection>scm:git:https://github.com/RegioneER/parer-verificafirma-eidas-beans.git</developerConnection> |
28 | 27 | <tag>HEAD</tag>
|
29 | 28 | </scm>
|
30 | 29 |
|
31 | 30 | <repositories>
|
32 |
| - <repository> |
33 |
| - <id>github</id> |
34 |
| - <url>https://maven.pkg.github.com/RegioneER/parer.sacer.parent/</url> |
35 |
| - </repository> |
| 31 | + <repository> |
| 32 | + <id>github</id> |
| 33 | + <url>https://maven.pkg.github.com/RegioneER/parer.sacer.parent/</url> |
| 34 | + </repository> |
36 | 35 | <repository>
|
37 | 36 | <id>cefdigital</id>
|
38 | 37 | <name>cefdigital</name>
|
39 | 38 | <url>https://ec.europa.eu/digital-building-blocks/artifact/content/repositories/esignaturedss/</url>
|
40 |
| - </repository> |
| 39 | + </repository> |
41 | 40 | </repositories>
|
42 | 41 |
|
| 42 | + |
| 43 | + <dependencyManagement> |
| 44 | + <dependencies> |
| 45 | + <dependency> |
| 46 | + <groupId>eu.europa.ec.joinup.sd-dss</groupId> |
| 47 | + <artifactId>sd-dss</artifactId> |
| 48 | + <version>${dss.version}</version> |
| 49 | + <type>pom</type> |
| 50 | + <scope>import</scope> |
| 51 | + </dependency> |
| 52 | + </dependencies> |
| 53 | + </dependencyManagement> |
| 54 | + |
43 | 55 | <dependencies>
|
44 | 56 | <dependency>
|
45 | 57 | <groupId>eu.europa.ec.joinup.sd-dss</groupId>
|
46 | 58 | <artifactId>dss-validation-dto</artifactId>
|
47 |
| - <version>${dss.version}</version> |
48 | 59 | </dependency>
|
49 | 60 | <dependency>
|
50 | 61 | <groupId>eu.europa.ec.joinup.sd-dss</groupId>
|
51 | 62 | <artifactId>dss-document</artifactId>
|
52 |
| - <version>${dss.version}</version> |
53 | 63 | </dependency>
|
54 | 64 | <dependency>
|
55 | 65 | <groupId>eu.europa.ec.joinup.sd-dss</groupId>
|
56 | 66 | <artifactId>dss-validation-soap-client</artifactId>
|
57 | 67 | <scope>compile</scope>
|
58 |
| - <version>${dss.version}</version> |
59 | 68 | </dependency>
|
60 | 69 | <dependency>
|
61 | 70 | <groupId>eu.europa.ec.joinup.sd-dss</groupId>
|
62 | 71 | <artifactId>dss-model</artifactId>
|
63 | 72 | <scope>compile</scope>
|
64 |
| - <version>${dss.version}</version> |
65 | 73 | </dependency>
|
66 | 74 | <dependency>
|
67 | 75 | <groupId>eu.europa.ec.joinup.sd-dss</groupId>
|
68 | 76 | <artifactId>dss-utils-apache-commons</artifactId>
|
69 |
| - <version>${dss.version}</version> |
70 | 77 | </dependency>
|
71 | 78 | <dependency>
|
72 |
| - <groupId>javax.validation</groupId> |
73 |
| - <artifactId>validation-api</artifactId> |
74 |
| - <version>${javax.validation.version}</version> |
| 79 | + <groupId>jakarta.validation</groupId> |
| 80 | + <artifactId>jakarta.validation-api</artifactId> |
| 81 | + <version>${jakarta.validation-api.version}</version> |
75 | 82 | <scope>provided</scope>
|
76 | 83 | </dependency>
|
77 | 84 | <dependency>
|
78 |
| - <groupId>com.fasterxml.uuid</groupId> |
79 |
| - <artifactId>java-uuid-generator</artifactId> |
80 |
| - <version>${java-uuid-generator.version}</version> |
81 |
| - </dependency> |
| 85 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 86 | + <artifactId>jackson-annotations</artifactId> |
| 87 | + <version>${jackson-core.version}</version> |
| 88 | + <scope>provided</scope> |
| 89 | + </dependency> |
| 90 | + |
82 | 91 | </dependencies>
|
83 | 92 |
|
84 | 93 | </project>
|
0 commit comments