aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-be
diff options
context:
space:
mode:
authorvasraz <vasyl.razinkov@est.tech>2022-04-04 23:27:19 +0100
committerVasyl Razinkov <vasyl.razinkov@est.tech>2022-04-04 22:31:22 +0000
commit18fbc5406f77d39889992dff22223d0eb89474e8 (patch)
treecaad51eb5be6350e41b18d7a58b155df3f43f0b3 /sdc-workflow-designer-be
parentdf84c6b73dc01186976e4001d77179ed14828aea (diff)
Fix broken sdc-workflow-designer-be container
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech> Issue-ID: SDC-3950 Change-Id: I606b7536da5e867cd7edf7f23f5532e09764ede4
Diffstat (limited to 'sdc-workflow-designer-be')
-rw-r--r--sdc-workflow-designer-be/pom.xml31
1 files changed, 28 insertions, 3 deletions
diff --git a/sdc-workflow-designer-be/pom.xml b/sdc-workflow-designer-be/pom.xml
index 48e5a8b3..0d729b05 100644
--- a/sdc-workflow-designer-be/pom.xml
+++ b/sdc-workflow-designer-be/pom.xml
@@ -14,14 +14,15 @@
</parent>
<properties>
- <spring.boot.version>2.6.4</spring.boot.version>
- <org.springframework.version>5.3.13</org.springframework.version>
+ <spring.boot.version>2.1.18.RELEASE</spring.boot.version>
+ <org.springframework.version>5.1.19.RELEASE</org.springframework.version>
<mapstruct.version>1.3.1.Final</mapstruct.version>
<lombok.version>1.18.0</lombok.version>
<springfox.version>3.0.0</springfox.version>
<jaxb.api.version>2.3.0</jaxb.api.version>
<org.glassfish.version>4.0.2</org.glassfish.version>
<mockito.version>3.7.7</mockito.version>
+ <springframework.plugin.version>2.0.0.RELEASE</springframework.plugin.version>
</properties>
<dependencyManagement>
@@ -122,6 +123,11 @@
</exclusions>
</dependency>
<dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-handler</artifactId>
+ <version>4.1.75.Final</version>
+ </dependency>
+ <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
@@ -141,6 +147,26 @@
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>${springfox.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.springframework.plugin</groupId>
+ <artifactId>spring-plugin-core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.springframework.plugin</groupId>
+ <artifactId>spring-plugin-metadata</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework.plugin</groupId>
+ <artifactId>spring-plugin-core</artifactId>
+ <version>${springframework.plugin.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework.plugin</groupId>
+ <artifactId>spring-plugin-metadata</artifactId>
+ <version>${springframework.plugin.version}</version>
</dependency>
<dependency>
<groupId>org.openecomp.sdc</groupId>
@@ -352,4 +378,3 @@
</profiles>
</project>
-