diff options
author | Dan Timoney <dtimoney@att.com> | 2021-08-17 09:09:41 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2021-08-17 09:09:41 -0400 |
commit | d411412b88a1eccd593a9227c1659a52e167b861 (patch) | |
tree | bd4a13a1e3333efe478d44befd6e45a9bd63995e /ms/sliboot/pom.xml | |
parent | d2678073e6b4101c1f68eef22011734526ebcc25 (diff) |
Upgrade to springboot 2.5
Upgrade to springboot version 2.5 to address third party vulnerabilities
Issue-ID: CCSDK-3415
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: Id7d3d3ab9bf161600412b33862526181f2444224
Diffstat (limited to 'ms/sliboot/pom.xml')
-rw-r--r-- | ms/sliboot/pom.xml | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/ms/sliboot/pom.xml b/ms/sliboot/pom.xml index e93f70a3..a9ffec0b 100644 --- a/ms/sliboot/pom.xml +++ b/ms/sliboot/pom.xml @@ -4,7 +4,7 @@ <parent> <groupId>org.onap.ccsdk.parent</groupId> - <artifactId>spring-boot-starter-parent</artifactId> + <artifactId>spring-boot-25-starter-parent</artifactId> <version>2.2.0-SNAPSHOT</version> <relativePath/> </parent> @@ -68,13 +68,8 @@ </dependency> <dependency> <groupId>io.springfox</groupId> - <artifactId>springfox-swagger2</artifactId> - <version>2.9.2</version> - </dependency> - <dependency> - <groupId>io.springfox</groupId> - <artifactId>springfox-swagger-ui</artifactId> - <version>2.9.2</version> + <artifactId>springfox-boot-starter</artifactId> + <version>${springfox.version}</version> </dependency> <dependency> <groupId>org.onap.aaf.authz</groupId> @@ -97,6 +92,12 @@ <artifactId>aaf-misc-env</artifactId> <version>${aaf.cadi.version}</version> <scope>runtime</scope> + <exclusions> + <exclusion> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.onap.aaf.authz</groupId> @@ -514,6 +515,7 @@ <MYSQL_USER>sli</MYSQL_USER> <MYSQL_PASSWORD>abc123</MYSQL_PASSWORD> <MYSQL_DATABASE>sdnctl</MYSQL_DATABASE> + <MYSQL_HOST>dbhost</MYSQL_HOST> <SDNC_CONFIG_DIR>/opt/onap/ccsdk/config</SDNC_CONFIG_DIR> </env> <dependsOn> |