diff options
author | liamfallon <liam.fallon@est.tech> | 2022-10-11 19:12:59 +0100 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2022-10-11 19:13:03 +0100 |
commit | 523f474291416fc5ac9621b9bf0defac1754d182 (patch) | |
tree | 87f1d511c434284c5abe310b76201c84e6818cf5 /integration/pom.xml | |
parent | 4f6f263173f75400dd4c2d47c6e7210365ebc3e7 (diff) |
Fix builds, revert springboot to 2.5.x
Fixing up the dependencies for escurity:
- Springboot > 2.5.x does NOT work with Swagger 2.0 so its reverted
- Jackson and Jackson databind can bow be ont he same version and the
latest version works fine
- Kafka client has a security issue, so upgrading to latest version
Issue-ID: POLICY-4393
Change-Id: If9c68c1c3df3a426dcbb81f35ac561baf870e6fb
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'integration/pom.xml')
-rw-r--r-- | integration/pom.xml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/integration/pom.xml b/integration/pom.xml index 78ec369a..67c4f526 100644 --- a/integration/pom.xml +++ b/integration/pom.xml @@ -44,14 +44,13 @@ <version.eclipselink>2.7.8</version.eclipselink> <version.drools>7.73.0.Final</version.drools> <version.jersey>2.33</version.jersey> - <version.jackson>2.12.6</version.jackson> - <version.jackson.databind>2.14.0-rc1</version.jackson.databind> + <version.jackson>2.14.0-rc1</version.jackson> <version.ccsdk>1.1.5</version.ccsdk> <version.swagger>1.6.6</version.swagger> <version.javax.bind>2.3.1</version.javax.bind> <version.javax.json>1.1.4</version.javax.json> <version.netty>4.1.70.Final</version.netty> - <version.springboot>2.7.4</version.springboot> + <version.springboot>2.5.14</version.springboot> <version.hibernate.core>5.4.31.Final</version.hibernate.core> <version.eelf.core>1.0.0</version.eelf.core> <version.camel>3.7.3</version.camel> @@ -63,7 +62,7 @@ <version.io.micrometer>1.7.3</version.io.micrometer> <version.io.prometheus>0.11.0</version.io.prometheus> <version.postgres>42.5.0</version.postgres> - <version.kafka>3.0.0</version.kafka> + <version.kafka>3.3.1</version.kafka> <jacoco.dataFile>${project.basedir}/../target/code-coverage/jacoco-ut.exec</jacoco.dataFile> <repo.npm>https://nexus3.onap.org/repository/npm.public/npm/-/</repo.npm> <docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry> @@ -101,7 +100,7 @@ <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> - <version>${version.jackson.databind}</version> + <version>${version.jackson}</version> </dependency> <dependency> @@ -903,6 +902,11 @@ </dependency> <dependency> <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-actuator</artifactId> + <version>${version.springboot}</version> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <version>${version.springboot}</version> </dependency> |