From 9841314c7528049aab90bd990fdc5118467b398b Mon Sep 17 00:00:00 2001
From: Joaquín Reñé <jrene@curisit.net>
Date: Thu, 07 Nov 2024 10:49:26 +0000
Subject: [PATCH] #4385 - update pom
---
securis/pom.xml | 153 ++++++++++++++++++++++++++++++--------------------
1 files changed, 92 insertions(+), 61 deletions(-)
diff --git a/securis/pom.xml b/securis/pom.xml
index 5fafccb..4357086 100644
--- a/securis/pom.xml
+++ b/securis/pom.xml
@@ -9,46 +9,43 @@
<description>CurisTEC Server Licenses</description>
- <properties>
- <maven.version>3.10.0</maven.version>
- </properties>
+ <organization>
+ <name>CURISTEC</name>
+ </organization>
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <lifecycle.version>1.0.0</lifecycle.version>
+ <maven.version>3.10.0</maven.version>
+ <maven.resources.overwrite>true</maven.resources.overwrite>
+ <maven.compiler.debug>true</maven.compiler.debug>
+ <maven.compiler.source>11</maven.compiler.source>
+ <maven.compiler.target>11</maven.compiler.target>
+ <maven-assembly-plugin.version>3.4.2</maven-assembly-plugin.version>
+ <ant.version>2.7.7</ant.version>
+ <java.version>11</java.version>
+
+ <ci.version>0.0.2-SNAPSHOT</ci.version>
+ <securis.client.version>1.2.0</securis.client.version>
+
+ <lang.version>2.6</lang.version>
+ <javax.version>3.1.0</javax.version>
+ <resteasy.version>3.0.13.Final</resteasy.version>
+ <log4j.version>2.17.2</log4j.version>
+ <httpclient.version>4.5.6</httpclient.version>
+ <jackson.version>2.4.3</jackson.version>
+ <weld.version>2.2.9.Final</weld.version>
+ <jandex.version>1.2.2.Final</jandex.version>
+ <hibernate.version>4.3.6.Final</hibernate.version>
+ <http.version>4.4-beta1</http.version>
+ <cdi.version>1.2</cdi.version>
+ </properties>
+
<dependencies>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.6</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>3.1.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.jboss.resteasy</groupId>
- <artifactId>resteasy-multipart-provider</artifactId>
- <version>3.0.13.Final</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.resteasy</groupId>
- <artifactId>resteasy-jaxrs</artifactId>
- <version>3.0.13.Final</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.weld.servlet</groupId>
- <artifactId>weld-servlet</artifactId>
- <version>2.2.9.Final</version>
- </dependency>
- <dependency>
- <groupId>org.jboss</groupId>
- <artifactId>jandex</artifactId>
- <version>1.2.2.Final</version>
- </dependency>
<dependency>
<groupId>net.curisit.integrity</groupId>
<artifactId>commons-curis</artifactId>
- <version>3.3.0</version>
+ <version>${ci.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
@@ -65,14 +62,9 @@
</exclusions>
</dependency>
<dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-entitymanager</artifactId>
- <version>4.3.6.Final</version>
- </dependency>
- <dependency>
<groupId>net.curisit</groupId>
<artifactId>securis-client</artifactId>
- <version>1.2.0</version>
+ <version>${securis.client.version}</version>
<exclusions>
<exclusion>
<artifactId>jackson-databind</artifactId>
@@ -80,20 +72,42 @@
</exclusion>
</exclusions>
</dependency>
+
<dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.4-beta1</version>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-web</artifactId>
+ <version>${log4j.version}</version>
</dependency>
<dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpmime</artifactId>
- <version>4.4-beta1</version>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>2.6</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>javax.servlet-api</artifactId>
+ <version>${javax.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.resteasy</groupId>
+ <artifactId>resteasy-multipart-provider</artifactId>
+ <version>${resteasy.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.resteasy</groupId>
+ <artifactId>resteasy-jaxrs</artifactId>
+ <version>${resteasy.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.resteasy</groupId>
+ <artifactId>resteasy-cdi</artifactId>
+ <version>${resteasy.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jackson2-provider</artifactId>
- <version>3.0.13.Final</version>
+ <version>${resteasy.version}</version>
<exclusions>
<exclusion>
<artifactId>jackson-core</artifactId>
@@ -105,10 +119,32 @@
</exclusion>
</exclusions>
</dependency>
+
<dependency>
- <groupId>org.apache.logging.log4j</groupId>
- <artifactId>log4j-web</artifactId>
- <version>2.17.2</version>
+ <groupId>org.jboss.weld.servlet</groupId>
+ <artifactId>weld-servlet</artifactId>
+ <version>${weld.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jandex</artifactId>
+ <version>${jandex.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-entitymanager</artifactId>
+ <version>${hibernate.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ <version>${http.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpmime</artifactId>
+ <version>${http.version}</version>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
@@ -117,19 +153,14 @@
<scope>provided</scope>
</dependency>
<dependency>
- <groupId>org.jboss.resteasy</groupId>
- <artifactId>resteasy-cdi</artifactId>
- <version>3.0.13.Final</version>
- </dependency>
- <dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
- <version>2.4.1</version>
+ <version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
- <version>2.4.1</version>
+ <version>${jackson.version}</version>
</dependency>
</dependencies>
<build>
@@ -139,13 +170,13 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.version}</version>
<configuration>
- <source>1.8</source>
- <target>1.8</target>
+ <source>11</source>
+ <target>11</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
- <version>2.4</version>
+ <version>${maven-assembly-plugin.version}</version>
<configuration>
<formats>
<format>zip</format>
--
Gitblit v1.3.2