summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sdc-workflow-designer-be/pom.xml13
-rw-r--r--sdc-workflow-designer-ui/pom.xml5
2 files changed, 13 insertions, 5 deletions
diff --git a/sdc-workflow-designer-be/pom.xml b/sdc-workflow-designer-be/pom.xml
index 1c569235..93954d81 100644
--- a/sdc-workflow-designer-be/pom.xml
+++ b/sdc-workflow-designer-be/pom.xml
@@ -14,18 +14,25 @@
</parent>
<properties>
- <spring.boot.version>2.3.11.RELEASE</spring.boot.version>
- <org.springframework.version>5.2.15.RELEASE</org.springframework.version>
+ <spring.boot.version>2.6.4</spring.boot.version>
+ <org.springframework.version>5.3.13</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>3.0.3</org.glassfish.version>
+ <org.glassfish.version>4.0.2</org.glassfish.version>
+ <mockito.version>3.7.7</mockito.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
+ <groupId>org.mockito</groupId>
+ <artifactId>mockito-core</artifactId>
+ <version>${mockito.version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot.version}</version>
diff --git a/sdc-workflow-designer-ui/pom.xml b/sdc-workflow-designer-ui/pom.xml
index 4cfc8d15..d658a202 100644
--- a/sdc-workflow-designer-ui/pom.xml
+++ b/sdc-workflow-designer-ui/pom.xml
@@ -32,6 +32,7 @@
<properties>
<jest.command />
+ <jetty.version>9.4.45.v20220203</jetty.version>
</properties>
@@ -39,7 +40,7 @@
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-proxy</artifactId>
- <version>9.4.40.v20210413</version>
+ <version>${jetty.version}</version>
<exclusions>
<exclusion>
<artifactId>jetty-http</artifactId>
@@ -56,7 +57,7 @@
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-http</artifactId>
- <version>9.4.40.v20210413</version>
+ <version>${jetty.version}</version>
</dependency>
</dependencies>