You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bookkeeper.apache.org by iv...@apache.org on 2018/11/19 10:26:44 UTC

[bookkeeper] branch master updated: Rollback snakeyaml version (Fixes IT tests)

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

ivank pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git


The following commit(s) were added to refs/heads/master by this push:
     new 1a03023  Rollback snakeyaml version (Fixes IT tests)
1a03023 is described below

commit 1a030239d6c3c221b140a02e3ef8ba137f709985
Author: Ivan Kelly <iv...@apache.org>
AuthorDate: Mon Nov 19 11:26:39 2018 +0100

    Rollback snakeyaml version (Fixes IT tests)
    
    The stats gen (#1787) change introduced a version of snakeyaml which
    is incompatible with arquillian-cube (between 1.19 and 1.23 they
    remove some methods).
    
    This was picked up by the integration tests, but overriden to submit.
    
    This change pins the snakeyaml version at 1.19, thereby allowing the
    integration tests to run again.
    
    
    Reviewers: Enrico Olivelli <eo...@gmail.com>
    
    This closes #1817 from ivankelly/fix-it
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 8f151b8..125f2e2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -163,7 +163,7 @@
     <rocksdb.version>5.13.1</rocksdb.version>
     <shrinkwrap.version>3.0.1</shrinkwrap.version>
     <slf4j.version>1.7.25</slf4j.version>
-    <snakeyaml.version>1.23</snakeyaml.version>
+    <snakeyaml.version>1.19</snakeyaml.version>
     <spotbugs-annotations.version>3.1.1</spotbugs-annotations.version>
     <javax-annotations-api.version>1.3.2</javax-annotations-api.version>
     <testcontainers.version>1.8.3</testcontainers.version>