Skip to content

Commit 7be9f40

Browse files
committedMay 1, 2024
update: dependency
1 parent c25dba5 commit 7be9f40

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed
 

‎pom.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>com.mysql</groupId>
5959
<artifactId>mysql-connector-j</artifactId>
60-
<version>8.2.0</version>
60+
<version>8.4.0</version>
6161
<exclusions>
6262
<exclusion>
6363
<groupId>com.google.protobuf</groupId>
@@ -75,19 +75,19 @@
7575
<dependency>
7676
<groupId>org.projectlombok</groupId>
7777
<artifactId>lombok</artifactId>
78-
<version>1.18.30</version>
78+
<version>1.18.32</version>
7979
</dependency>
8080

8181
<dependency>
8282
<groupId>commons-codec</groupId>
8383
<artifactId>commons-codec</artifactId>
84-
<version>1.16.0</version>
84+
<version>1.16.1</version>
8585
</dependency>
8686

8787
<dependency>
8888
<groupId>software.amazon.awssdk</groupId>
8989
<artifactId>s3</artifactId>
90-
<version>2.21.39</version>
90+
<version>2.25.42</version>
9191
</dependency>
9292
</dependencies>
9393

@@ -98,7 +98,7 @@
9898
<plugin>
9999
<groupId>org.apache.maven.plugins</groupId>
100100
<artifactId>maven-compiler-plugin</artifactId>
101-
<version>3.11.0</version>
101+
<version>3.13.0</version>
102102
<configuration>
103103
<source>1.8</source>
104104
<target>1.8</target>
@@ -125,7 +125,7 @@
125125
<artifactItem>
126126
<groupId>com.heroku</groupId>
127127
<artifactId>webapp-runner</artifactId>
128-
<version>9.0.83.0</version>
128+
<version>9.0.87.0</version>
129129
<destFileName>webapp-runner.jar</destFileName>
130130
</artifactItem>
131131
</artifactItems>

‎src/main/webapp/WEB-INF/views/customer/newPasswordView.jsp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<head>
77
<meta charset="UTF-8">
88
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
9-
<title>Đăng nhập</title>
9+
<title>Tạo mặt khẩu mới</title>
1010
<link rel="icon" href="resources/img/icon/favicon.ico" type="image/x-icon">
1111

1212
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"

‎src/main/webapp/WEB-INF/views/customer/userInfoView.jsp

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
document.getElementById('dienThoai').removeAttribute('disabled');
9090
9191
document.getElementById('edit-btn').setAttribute('disabled', 'true');
92-
document.getElementById('save-btn').removeAttribute('disabled');;
92+
document.getElementById('save-btn').removeAttribute('disabled');
9393
});
9494
</script>
9595

0 commit comments

Comments
 (0)
Please sign in to comment.