Skip to content

Commit 696d33a

Browse files
Add SnakeYAML BOM (#13256)
* Add SnakeYAML BOM to override SpringBoot BOM * Use property instead of hardcoded version * Patch yaml processor * Replace broken spring boot classes --------- Co-authored-by: Puneet Behl <[email protected]>
1 parent a0d575f commit 696d33a

File tree

6 files changed

+551
-2
lines changed

6 files changed

+551
-2
lines changed

build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@ ext {
6868
names : ['grails-async', 'grails-events'],
6969
modules: ['gpars', 'rxjava', 'rxjava2']
7070
],
71+
snakeyaml : [
72+
version: snakeyamlVersion,
73+
group : 'org.yaml',
74+
names : ['snakeyaml'],
75+
modules: ['']
76+
],
7177
spock : [
7278
version: spockVersion,
7379
group : 'org.spockframework',

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ concurrentlinkedhashmapVersion=1.4.2
2121
springLoadedVersion=1.2.8.RELEASE
2222
jnaVersion=4.2.2
2323
slf4jVersion=1.7.25
24+
snakeyamlVersion=2.2
2425
directoryWatcherVersion=0.5.1
2526
junitVersion=4.12
2627
caffeineVersion=2.6.2

grails-bootstrap/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import org.apache.tools.ant.filters.ReplaceTokens
33
dependencies {
44
compile ( "org.codehaus.groovy:groovy-xml:$groovyVersion" )
55
compile ( "org.codehaus.groovy:groovy-templates:$groovyVersion" )
6-
compile "org.yaml:snakeyaml:1.14"
6+
compile "org.yaml:snakeyaml:$snakeyamlVersion"
77

88
compileOnly("io.methvin:directory-watcher:0.3.0")
99
compileOnly("org.fusesource.jansi:jansi:$jansiVersion")

0 commit comments

Comments
 (0)