BAEL-4842 - Use React and Spring Boot to Build a Simple CRUD App

Updating Spring Boot version to 2.4.4
This commit is contained in:
Sallo Szrajbman 2021-04-14 17:39:00 +01:00
parent 45dcdf2a0d
commit 0d875a5b20

View File

@ -25,13 +25,13 @@
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId> <artifactId>spring-boot-starter-web</artifactId>
<version>2.4.3</version> <version>2.4.4</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId> <artifactId>spring-boot-starter-data-jpa</artifactId>
<version>2.4.3</version> <version>2.4.4</version>
</dependency> </dependency>
<dependency> <dependency>
@ -50,7 +50,7 @@
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId> <artifactId>spring-boot-starter-test</artifactId>
<version>2.4.3</version> <version>2.4.4</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>