tr-fteixeira commented on issue #481:
URL: https://github.com/apache/pulsar-manager/issues/481#issuecomment-1211273398

   I was able to work around the problem doing the following changes on 
`build.gradle` and rebuilding the image. 
   I am sure this is not the best way to solve it, but it works. 
   As this is a bit out of my ordinary alleyway, its all i can offer... hope it 
helps others =).
   
   ```
       compile (group: 'org.springframework.boot', name: 'spring-boot-starter', 
version: springBootVersion) {
           exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core'
           exclude group: 'com.fasterxml.jackson.core', module: 
'jackson-databind'
           exclude group: 'com.fasterxml.jackson.core', module: 
'jackson-annotations'
       }
       compile (group: 'org.springframework.boot', name: 
'spring-boot-starter-web', version: springBootVersion) {
           exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core'
           exclude group: 'com.fasterxml.jackson.core', module: 
'jackson-databind'
           exclude group: 'com.fasterxml.jackson.core', module: 
'jackson-annotations'
       }
       compile (group: 'org.springframework.cloud', name: 
'spring-cloud-starter-netflix-zuul', version: springBootVersion) {
           exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core'
           exclude group: 'com.fasterxml.jackson.core', module: 
'jackson-databind'
           exclude group: 'com.fasterxml.jackson.core', module: 
'jackson-annotations'
       }
       compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', 
version: '2.11.1'
       compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', 
version: '2.11.1'
       compile group: 'com.fasterxml.jackson.core', name: 
'jackson-annotations', version: '2.11.1'
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to