Skip to content

Commit cc3d661

Browse files
author
Ivan Franchin
committed
project update
- update to spring-boot 2.5.5; - update to mysql docker image 8.0.26; - update to springdoc-openapi 1.5.10; - update to maven 3.8.2; - update npm dependencies. - update README.
1 parent ceb403e commit cc3d661

File tree

6 files changed

+122
-96
lines changed

6 files changed

+122
-96
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The goal of this project is to implement an application called `order-app` to ma
5151
docker-compose up -d
5252
```
5353

54-
- Wait a little bit until `mysql` container is Up (healthy). You can check their status running
54+
- Wait for `mysql` container to be with status `running (healthy)`. To check it, run
5555
```
5656
docker-compose ps
5757
```
@@ -195,7 +195,8 @@ The goal of this project is to implement an application called `order-app` to ma
195195
It should return
196196
```
197197
HTTP/1.1 200
198-
{ "id": 1, "username": "admin", "name": "Admin", "email": "admin@mycompany.com", "role": "ADMIN",
198+
{
199+
"id": 1, "username": "admin", "name": "Admin", "email": "admin@mycompany.com", "role": "ADMIN",
199200
"orders": []
200201
}
201202
```

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3.8'
33
services:
44

55
mysql:
6-
image: mysql:8.0.25
6+
image: mysql:8.0.26
77
container_name: mysql
88
ports:
99
- "3306:3306"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.1/apache-maven-3.8.1-bin.zip
1+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.2/apache-maven-3.8.2-bin.zip
22
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar

order-api/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.springframework.boot</groupId>
66
<artifactId>spring-boot-starter-parent</artifactId>
7-
<version>2.5.2</version>
7+
<version>2.5.5</version>
88
<relativePath /> <!-- lookup parent from repository -->
99
</parent>
1010

@@ -19,7 +19,7 @@
1919
<jjwt.version>0.11.2</jjwt.version>
2020
<org.mapstruct.version>1.4.2.Final</org.mapstruct.version>
2121
<lombok-mapstruct-binding.version>0.2.0</lombok-mapstruct-binding.version>
22-
<springdoc-openapi.version>1.5.9</springdoc-openapi.version>
22+
<springdoc-openapi.version>1.5.10</springdoc-openapi.version>
2323
</properties>
2424

2525
<dependencies>

0 commit comments

Comments
 (0)