You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2022/10/07 13:33:34 UTC

[myfaces-tobago] branch tobago-5.x updated: build: ignore problems in spring boot (#3338)

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

lofwyr pushed a commit to branch tobago-5.x
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git


The following commit(s) were added to refs/heads/tobago-5.x by this push:
     new 19b2ccf0a8 build: ignore problems in spring boot (#3338)
19b2ccf0a8 is described below

commit 19b2ccf0a8094ce71c8195f54a705aecb7abda30
Author: Udo Schnurpfeil <gi...@schnurpfeil.de>
AuthorDate: Fri Oct 7 15:33:29 2022 +0200

    build: ignore problems in spring boot (#3338)
    
    because its not part of the release
---
 tobago-example/tobago-example-spring-boot/pom.xml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tobago-example/tobago-example-spring-boot/pom.xml b/tobago-example/tobago-example-spring-boot/pom.xml
index 2b4126eac6..5270cfffe5 100644
--- a/tobago-example/tobago-example-spring-boot/pom.xml
+++ b/tobago-example/tobago-example-spring-boot/pom.xml
@@ -50,7 +50,9 @@
                 <configuration>
                   <!-- the spring-boot demo is not part of the release,
                   so spring-boot dependencies are not relevant to let the build fail -->
-                  <failBuildOnCVSS>8</failBuildOnCVSS>
+                  <excludes>
+                    <exclude>*:snakeyaml:*</exclude>
+                  </excludes>
                 </configuration>
               </plugin>
             </plugins>
@@ -178,7 +180,7 @@
       <dependency>
         <groupId>com.fasterxml.jackson.core</groupId>
         <artifactId>jackson-databind</artifactId>
-        <version>2.13.4</version>
+        <version>2.14.0-rc1</version>
       </dependency>
       <dependency> <!-- add JAXB to run the demo with Java 11 and higher -->
             <groupId>javax.xml.bind</groupId>