This is an automated email from the ASF dual-hosted git repository.
dahn pushed a commit to branch 4.20
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.20 by this push:
new db1c7d678cc Updated protobuf version to 3.25.5, and protobuf & jackson
maven dependencies (#12389)
db1c7d678cc is described below
commit db1c7d678cc5505a926193e119991eb87d86cf33
Author: Suresh Kumar Anaparti <[email protected]>
AuthorDate: Mon Jan 12 12:51:19 2026 +0530
Updated protobuf version to 3.25.5, and protobuf & jackson maven
dependencies (#12389)
---
plugins/hypervisors/kvm/pom.xml | 25 +++++++++++++++++++++++++
pom.xml | 12 ++++++++++++
utils/pom.xml | 5 +++++
3 files changed, 42 insertions(+)
diff --git a/plugins/hypervisors/kvm/pom.xml b/plugins/hypervisors/kvm/pom.xml
index 096c0362ee4..e2e1721b3a7 100644
--- a/plugins/hypervisors/kvm/pom.xml
+++ b/plugins/hypervisors/kvm/pom.xml
@@ -67,6 +67,31 @@
<artifactId>java-linstor</artifactId>
<version>${cs.java-linstor.version}</version>
</dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-core</artifactId>
+ <version>${cs.jackson.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-annotations</artifactId>
+ <version>${cs.jackson.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ <version>${cs.jackson.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.datatype</groupId>
+ <artifactId>jackson-datatype-jsr310</artifactId>
+ <version>${cs.jackson.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.module</groupId>
+ <artifactId>jackson-module-jaxb-annotations</artifactId>
+ <version>${cs.jackson.version}</version>
+ </dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
diff --git a/pom.xml b/pom.xml
index b51ed12fded..6985108302d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -190,6 +190,7 @@
<org.springframework.version>5.3.26</org.springframework.version>
<cs.ini.version>0.5.4</cs.ini.version>
<cs.caffeine.version>3.1.7</cs.caffeine.version>
+ <cs.protobuf.version>3.25.5</cs.protobuf.version>
</properties>
<distributionManagement>
@@ -727,6 +728,17 @@
<artifactId>xml-apis</artifactId>
<version>2.0.2</version>
</dependency>
+ <!-- enforced protobuf version here as mysql-connector-java is
pulling older version (3.19.3) -->
+ <dependency>
+ <groupId>com.google.protobuf</groupId>
+ <artifactId>protobuf-java</artifactId>
+ <version>${cs.protobuf.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.google.protobuf</groupId>
+ <artifactId>protobuf-java-util</artifactId>
+ <version>${cs.protobuf.version}</version>
+ </dependency>
<dependency>
<groupId>com.linbit.linstor.api</groupId>
<artifactId>java-linstor</artifactId>
diff --git a/utils/pom.xml b/utils/pom.xml
index 6c367364600..6b8b1249423 100755
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -196,6 +196,11 @@
<artifactId>jackson-databind</artifactId>
<version>${cs.jackson.version}</version>
</dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.dataformat</groupId>
+ <artifactId>jackson-dataformat-cbor</artifactId>
+ <version>${cs.jackson.version}</version>
+ </dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>