Commit 1022a3dc0183eada6f9c139f716e4064ddc6ebdf
1 parent
492d449c
Exlude old version of jackson-core that doesn't work with updated Spring framework
Showing
1 changed file
with
7 additions
and
1 deletions
... | ... | @@ -50,7 +50,7 @@ |
50 | 50 | <commons-validator.version>1.5.0</commons-validator.version> |
51 | 51 | <commons-io.version>2.5</commons-io.version> |
52 | 52 | <commons-csv.version>1.4</commons-csv.version> |
53 | - <jackson.version>2.9.7</jackson.version> | |
53 | + <jackson.version>2.9.0</jackson.version> | |
54 | 54 | <json-schema-validator.version>2.2.6</json-schema-validator.version> |
55 | 55 | <scala.version>2.11</scala.version> |
56 | 56 | <akka.version>2.4.2</akka.version> |
... | ... | @@ -792,6 +792,12 @@ |
792 | 792 | <groupId>de.ruedigermoeller</groupId> |
793 | 793 | <artifactId>fst</artifactId> |
794 | 794 | <version>${fst.version}</version> |
795 | + <exclusions> | |
796 | + <exclusion> | |
797 | + <groupId>com.fasterxml.jackson.core</groupId> | |
798 | + <artifactId>jackson-core</artifactId> | |
799 | + </exclusion> | |
800 | + </exclusions> | |
795 | 801 | </dependency> |
796 | 802 | <dependency> |
797 | 803 | <groupId>io.springfox.ui</groupId> | ... | ... |