aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorliamfallon <liam.fallon@est.tech>2022-04-21 12:52:54 +0100
committerliamfallon <liam.fallon@est.tech>2022-04-21 12:55:10 +0100
commit3ebb31d11c0f347ee45b9d39f19e150edf62b08c (patch)
treede374a45e8922a7fa8410cba22a7c86b787af0bb
parent25645475f8af78a689ba3918d190ed41ca8440b2 (diff)
Add spring dependencies into dependency management
Some dependencies were missing in oparent and then did not respect the spring.version parameter for setting the spring version, dragging in the vulnerable version of spring-beans. Issue-ID: POLICY-4070 Change-Id: I819062a6165bbec33498414c4f4401cb41475028 Signed-off-by: liamfallon <liam.fallon@est.tech>
-rw-r--r--.gitignore1
-rw-r--r--dependencies/pom.xml15
2 files changed, 16 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 32edeae..d7497b4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,4 +3,5 @@ target
.project
.settings
.classpath
+**/*.iml
cia/
diff --git a/dependencies/pom.xml b/dependencies/pom.xml
index f75a7c5..33b10e0 100644
--- a/dependencies/pom.xml
+++ b/dependencies/pom.xml
@@ -69,6 +69,11 @@
</dependency>
<dependency>
<groupId>org.springframework</groupId>
+ <artifactId>spring-beans</artifactId>
+ <version>${spring.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
<version>${spring.version}</version>
</dependency>
@@ -83,6 +88,16 @@
<version>${spring.version}</version>
</dependency>
<dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-jdbc</artifactId>
+ <version>${spring.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-webflux</artifactId>
+ <version>${spring.version}</version>
+ </dependency>
+ <dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.4</version>