From 5f270bc432157c48506427ccd6effa675b9754e5 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Wed, 18 Oct 2017 12:17:13 +0200 Subject: [PATCH] Upgrade to SnakeYAML 1.19 --- spring-beans/spring-beans.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-beans/spring-beans.gradle b/spring-beans/spring-beans.gradle index a8a933e3f5..9d94d51c89 100644 --- a/spring-beans/spring-beans.gradle +++ b/spring-beans/spring-beans.gradle @@ -5,10 +5,10 @@ apply plugin: "groovy" dependencies { compile(project(':spring-core')) optional("javax.inject:javax.inject:1") + optional("org.yaml:snakeyaml:1.19") + optional("org.codehaus.groovy:groovy-all:${groovyVersion}") optional("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}") optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}") - optional("org.yaml:snakeyaml:1.18") - optional("org.codehaus.groovy:groovy-all:${groovyVersion}") testCompile("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}") }