Skip to content

Commit

Permalink
Update woodstox to 5.x (#1216)
Browse files Browse the repository at this point in the history
  • Loading branch information
troshko111 committed Jun 12, 2019
1 parent e71be8c commit a6be573
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ allprojects {
governatorVersion = '1.17.5'
archaiusVersion = '0.7.6'
jacksonVersion = '2.9.4'
woodstoxVersion = '4.4.1'
woodstoxVersion = '5.2.1'

// test deps
jetty_version = '7.2.0.v20101020'
Expand Down Expand Up @@ -73,4 +73,3 @@ subprojects {
}
}
}

4 changes: 2 additions & 2 deletions eureka-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ dependencies {
compile "com.google.inject:guice:${guiceVersion}"

compile "com.github.vlsi.compactmap:compactmap:1.2.1"

compile "com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}"
compile "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}"
compile "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"

// Eureka client uses JSON encoding by default
provided "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${jacksonVersion}"
// Prefered jackson Stax serializer. Default Oracle has issues (adds empty namespace) and is slower
provided "org.codehaus.woodstox:woodstox-core-asl:${woodstoxVersion}"
provided "com.fasterxml.woodstox:woodstox-core:${woodstoxVersion}"

runtime "org.codehaus.jettison:jettison:${jettisonVersion}"

Expand Down
2 changes: 1 addition & 1 deletion eureka-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {

// These dependencies are marked 'provided' in the client, but we need them always on the server
compile "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${jacksonVersion}"
compile "org.codehaus.woodstox:woodstox-core-asl:${woodstoxVersion}"
compile "com.fasterxml.woodstox:woodstox-core:${woodstoxVersion}"

testCompile project(':eureka-test-utils')
testCompile "junit:junit:${junit_version}"
Expand Down

0 comments on commit a6be573

Please sign in to comment.