Skip to content

Commit 43db0e5

Browse files
author
Ivan Franchin
committed
project upgrade
- upgrade to spring-boot 3.0.4; - upgrade to mysql docker image 8.0.32; - replace mysql.mysql-connector-java dependency to com.mysql.mysql-connector-j; - upgrade to apache-maven 3.8.7; - upgrade to maven-wrapper 3.1.1; - upgrade some npm dependencies.
1 parent 3406387 commit 43db0e5

File tree

6 files changed

+43
-27
lines changed

6 files changed

+43
-27
lines changed

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.31
6+
image: mysql:8.0.32
77
container_name: mysql
88
ports:
99
- "3306:3306"
1.17 KB
Binary file not shown.
Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.6/apache-maven-3.8.6-bin.zip
2-
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# https://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.7/apache-maven-3.8.7-bin.zip
18+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.1/maven-wrapper-3.1.1.jar

order-api/pom.xml

Lines changed: 3 additions & 3 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>3.0.1</version>
7+
<version>3.0.4</version>
88
<relativePath /> <!-- lookup parent from repository -->
99
</parent>
1010

@@ -74,8 +74,8 @@
7474
</dependency>
7575

7676
<dependency>
77-
<groupId>mysql</groupId>
78-
<artifactId>mysql-connector-java</artifactId>
77+
<groupId>com.mysql</groupId>
78+
<artifactId>mysql-connector-j</artifactId>
7979
<scope>runtime</scope>
8080
</dependency>
8181
<dependency>

order-ui/package-lock.json

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

order-ui/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"private": true,
55
"dependencies": {
66
"@testing-library/jest-dom": "^5.16.5",
7-
"@testing-library/react": "^13.4.0",
7+
"@testing-library/react": "^14.0.0",
88
"@testing-library/user-event": "^14.4.3",
99
"react": "^18.2.0",
1010
"react-dom": "^18.2.0",
1111
"react-scripts": "5.0.1",
12-
"web-vitals": "^3.1.0",
13-
"axios": "^1.2.2",
12+
"web-vitals": "^3.1.1",
13+
"axios": "^1.3.4",
1414
"react-router-dom": "^5.3.0",
1515
"semantic-ui-react": "^2.1.4"
1616
},

0 commit comments

Comments
 (0)