diff options
author | Thomas <> | 2022-01-09 15:01:28 +0100 |
---|---|---|
committer | Thomas <> | 2022-01-09 15:01:28 +0100 |
commit | e3639ef805f1e525415c43cbda80ed71cc43a70c (patch) | |
tree | 2b215fd820f510d71652c0ac4a7c3015bd579ce7 /build_reporting | |
parent | 6fcfe3946fb8c252f9b7a4961720dd851f720f9a (diff) | |
download | EAAF-Components-e3639ef805f1e525415c43cbda80ed71cc43a70c.tar.gz EAAF-Components-e3639ef805f1e525415c43cbda80ed71cc43a70c.tar.bz2 EAAF-Components-e3639ef805f1e525415c43cbda80ed71cc43a70c.zip |
feature(core): add synch. and asynch. GUI builder implementation that use Spring MVC architecture
Diffstat (limited to 'build_reporting')
-rw-r--r-- | build_reporting/pom.xml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/build_reporting/pom.xml b/build_reporting/pom.xml index 649e650a..9562fc72 100644 --- a/build_reporting/pom.xml +++ b/build_reporting/pom.xml @@ -48,7 +48,15 @@ <dependency> <groupId>at.gv.egiz.eaaf</groupId> <artifactId>eaaf-springboot-utils</artifactId> - </dependency> + </dependency> + + <!-- only to fix false-positive during vulnerability checks --> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-webmvc</artifactId> + <scope>provided</scope> + </dependency> + </dependencies> <build> |