This is an automated email from the ASF dual-hosted git repository.
olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/archiva-redback-core.git
The following commit(s) were added to refs/heads/master by this push:
new 18760edb add upperbounds enforcer rule
18760edb is described below
commit 18760edb88955ff5c7b73e7c51d703d2cec965d8
Author: Olivier Lamy <[email protected]>
AuthorDate: Sun Jun 5 21:36:56 2022 +1000
add upperbounds enforcer rule
Signed-off-by: Olivier Lamy <[email protected]>
---
pom.xml | 25 ++++++++++++++++++++++---
1 file changed, 22 insertions(+), 3 deletions(-)
diff --git a/pom.xml b/pom.xml
index 3ef2960c..26f6dc58 100644
--- a/pom.xml
+++ b/pom.xml
@@ -98,7 +98,7 @@
<ehcache.version>3.9.9</ehcache.version>
<spring.version>5.3.19</spring.version>
<cxf.version>3.3.11</cxf.version>
- <jackson.version>2.11.0</jackson.version>
+ <jackson.version>2.12.1</jackson.version>
<hsqldb.version>2.5.0</hsqldb.version>
<openjpa.version>3.1.1</openjpa.version>
@@ -420,6 +420,16 @@
<version>${archiva.comp.version}</version>
</dependency>
<!-- Other -->
+ <dependency>
+ <groupId>com.fasterxml.woodstox</groupId>
+ <artifactId>woodstox-core</artifactId>
+ <version>6.2.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.woodstox</groupId>
+ <artifactId>stax2-api</artifactId>
+ <version>4.2.1</version>
+ </dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
@@ -441,7 +451,11 @@
<artifactId>commons-codec</artifactId>
<version>${commons.codec.version}</version>
</dependency>
-
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-pool2</artifactId>
+ <version>2.6.1</version>
+ </dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
@@ -728,9 +742,14 @@
</dependency>
<!-- Java EE Dependencies -->
+ <dependency>
+ <groupId>jakarta.activation</groupId>
+ <artifactId>jakarta.activation-api</artifactId>
+ <version>1.2.2</version>
+ </dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
- <artifactId>jakarta.annotation-api</artifactId>
+ <artifactId>jakarta.annotation-api</artifactId>
<version>${jakarta.annotation.version}</version>
<scope>provided</scope>
</dependency>