Joaquín Reñé
2026-03-27 4ee50e257b32f6ec0f72907305d1f2b1212808a4
securis/pom.xml
....@@ -5,7 +5,8 @@
55 <modelVersion>4.0.0</modelVersion>
66 <groupId>net.curisit</groupId>
77 <artifactId>securis-server</artifactId>
8
- <version>2.0.2</version>
8
+ <version>3.0.0</version>
9
+ <packaging>war</packaging>
910 <name>SeCuris-Server</name>
1011
1112 <properties>
....@@ -14,11 +15,13 @@
1415 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1516 <maven.compiler.source>21</maven.compiler.source>
1617 <maven.compiler.target>21</maven.compiler.target>
18
+
1719 <resteasy.version>6.2.4.Final</resteasy.version>
1820 <hibernate.version>5.6.15.Final</hibernate.version>
1921 <jakarta.persistence.version>3.1.0</jakarta.persistence.version>
20
- <jakarta.servlet.version>6.0.0</jakarta.servlet.version>
22
+ <jakarta.servlet.version>6.1.0</jakarta.servlet.version>
2123 <jakarta.cdi.version>4.0.1</jakarta.cdi.version>
24
+ <beanutils.version>1.9.4</beanutils.version>
2225 <log4j.version>2.18.0</log4j.version>
2326 </properties>
2427
....@@ -36,12 +39,7 @@
3639 <artifactId>resteasy-core</artifactId>
3740 <version>${resteasy.version}</version>
3841 </dependency>
39
- <dependency>
40
- <groupId>org.jboss.resteasy</groupId>
41
- <artifactId>resteasy-servlet-initializer</artifactId>
42
- <version>${resteasy.version}</version>
43
- </dependency>
44
- <dependency>
42
+ <dependency>
4543 <groupId>org.jboss.resteasy</groupId>
4644 <artifactId>resteasy-multipart-provider</artifactId>
4745 <version>${resteasy.version}</version>
....@@ -83,6 +81,13 @@
8381 </dependency>
8482
8583 <!-- Hibernate 5 compatible con Jakarta Persistence -->
84
+ <!--
85
+ <dependency>
86
+ <groupId>org.hibernate</groupId>
87
+ <artifactId>hibernate-core</artifactId>
88
+ <version>${hibernate.version}</version>
89
+ </dependency>
90
+ -->
8691 <dependency>
8792 <groupId>org.hibernate</groupId>
8893 <artifactId>hibernate-core</artifactId>
....@@ -111,6 +116,14 @@
111116 <artifactId>guice</artifactId>
112117 <version>5.1.0</version>
113118 </dependency>
119
+
120
+ <!-- Bean utils -->
121
+ <dependency>
122
+ <groupId>commons-beanutils</groupId>
123
+ <artifactId>commons-beanutils</artifactId>
124
+ <version>${beanutils.version}</version>
125
+ </dependency>
126
+
114127
115128 </dependencies>
116129