You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rz...@apache.org on 2022/09/13 06:38:31 UTC

[tomee] branch main updated: TOMEE-4044 - Snakeyaml 1.32

This is an automated email from the ASF dual-hosted git repository.

rzo1 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomee.git


The following commit(s) were added to refs/heads/main by this push:
     new b4996dac43 TOMEE-4044 - Snakeyaml 1.32
b4996dac43 is described below

commit b4996dac43ac500d1efb152b43779b7ba693f063
Author: Richard Zowalla <ri...@hs-heilbronn.de>
AuthorDate: Tue Sep 13 08:25:58 2022 +0200

    TOMEE-4044 - Snakeyaml 1.32
---
 boms/tomee-microprofile/pom.xml            |  2 +-
 boms/tomee-plume/pom.xml                   |  2 +-
 boms/tomee-plus/pom.xml                    |  2 +-
 pom.xml                                    | 14 ++++++++++++++
 tomee/tomee-microprofile/mp-common/pom.xml |  5 +++++
 5 files changed, 22 insertions(+), 3 deletions(-)

diff --git a/boms/tomee-microprofile/pom.xml b/boms/tomee-microprofile/pom.xml
index c9e579a8f8..bd14af1f29 100644
--- a/boms/tomee-microprofile/pom.xml
+++ b/boms/tomee-microprofile/pom.xml
@@ -2078,7 +2078,7 @@
     <dependency>
       <groupId>org.yaml</groupId>
       <artifactId>snakeyaml</artifactId>
-      <version>1.31</version>
+      <version>1.32</version>
       <exclusions>
         <exclusion>
           <artifactId>*</artifactId>
diff --git a/boms/tomee-plume/pom.xml b/boms/tomee-plume/pom.xml
index d815d8e210..c938931d4c 100644
--- a/boms/tomee-plume/pom.xml
+++ b/boms/tomee-plume/pom.xml
@@ -2211,7 +2211,7 @@
     <dependency>
       <groupId>org.yaml</groupId>
       <artifactId>snakeyaml</artifactId>
-      <version>1.31</version>
+      <version>1.32</version>
       <exclusions>
         <exclusion>
           <artifactId>*</artifactId>
diff --git a/boms/tomee-plus/pom.xml b/boms/tomee-plus/pom.xml
index 03fee14273..c0c9823222 100644
--- a/boms/tomee-plus/pom.xml
+++ b/boms/tomee-plus/pom.xml
@@ -2222,7 +2222,7 @@
     <dependency>
       <groupId>org.yaml</groupId>
       <artifactId>snakeyaml</artifactId>
-      <version>1.31</version>
+      <version>1.32</version>
       <exclusions>
         <exclusion>
           <artifactId>*</artifactId>
diff --git a/pom.xml b/pom.xml
index 374954f175..92d4b594f9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -255,6 +255,8 @@
     <!-- Jackson required by OpenAPI Impl -->
     <jackson.version>2.13.4</jackson.version>
     <jackson.dataformat.version>2.13.4</jackson.dataformat.version>
+    <!-- required by Jackson dataformat yaml -->
+    <snakeyaml.version>1.32</snakeyaml.version>
 
     <!-- Javadoc & Asciidoclet -->
     <javadoc.version>3.3.2</javadoc.version>
@@ -1935,6 +1937,18 @@
         <groupId>com.fasterxml.jackson.dataformat</groupId>
         <artifactId>jackson-dataformat-yaml</artifactId>
         <version>${jackson.dataformat.version}</version>
+        <exclusions>
+          <exclusion>
+            <groupId>org.yaml</groupId>
+            <artifactId>snakeyaml</artifactId>
+          </exclusion>
+        </exclusions>
+      </dependency>
+      <!-- Jackson Dataformat Yaml requires snakeyaml -->
+      <dependency>
+        <groupId>org.yaml</groupId>
+        <artifactId>snakeyaml</artifactId>
+        <version>${snakeyaml.version}</version>
       </dependency>
     </dependencies>
   </dependencyManagement>
diff --git a/tomee/tomee-microprofile/mp-common/pom.xml b/tomee/tomee-microprofile/mp-common/pom.xml
index 8e7b1dcd47..9d1b8ff38d 100644
--- a/tomee/tomee-microprofile/mp-common/pom.xml
+++ b/tomee/tomee-microprofile/mp-common/pom.xml
@@ -206,6 +206,11 @@
       <groupId>com.fasterxml.jackson.core</groupId>
       <artifactId>jackson-databind</artifactId>
     </dependency>
+    <!-- Jackson Dataformat Yaml requires snakeyaml -->
+    <dependency>
+      <groupId>org.yaml</groupId>
+      <artifactId>snakeyaml</artifactId>
+    </dependency>
 
     <dependency>
       <groupId>org.eclipse.microprofile.opentracing</groupId>