diff options
author | egernug <gerard.nugent@est.tech> | 2024-07-17 07:41:44 +0100 |
---|---|---|
committer | egernug <gerard.nugent@est.tech> | 2024-07-17 11:33:40 +0100 |
commit | eef4efe4709da9fd3e173ea68525ff506746bd3b (patch) | |
tree | c522860c625e01ee27a3e3fce963db89bdb6aaf7 /dmi-stub/dmi-plugin-demo-and-csit-stub-app/pom.xml | |
parent | e703e344507e0f224cffecb931a8075d4e94a50c (diff) |
Fix DMI Stub dependency issues
Issue-ID: CPS-2321
Change-Id: I8d2b597aa7b537d29db7da6d60edeaa99fb2b76d
Signed-off-by: egernug <gerard.nugent@est.tech>
Diffstat (limited to 'dmi-stub/dmi-plugin-demo-and-csit-stub-app/pom.xml')
-rw-r--r-- | dmi-stub/dmi-plugin-demo-and-csit-stub-app/pom.xml | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/dmi-stub/dmi-plugin-demo-and-csit-stub-app/pom.xml b/dmi-stub/dmi-plugin-demo-and-csit-stub-app/pom.xml index 40455416..73105fd5 100644 --- a/dmi-stub/dmi-plugin-demo-and-csit-stub-app/pom.xml +++ b/dmi-stub/dmi-plugin-demo-and-csit-stub-app/pom.xml @@ -98,7 +98,24 @@ </profile> </profiles> <dependencies> - + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </exclusion></exclusions> + </dependency> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </exclusion></exclusions> + </dependency> <dependency> <groupId>org.onap.cps</groupId> <artifactId>dmi-plugin-demo-and-csit-stub-service</artifactId> @@ -110,10 +127,7 @@ </exclusion> </exclusions> </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-web</artifactId> - <version>3.2.4</version> - </dependency> + + </dependencies> </project>
\ No newline at end of file |