diff --git a/yudao-dependencies/pom.xml b/yudao-dependencies/pom.xml
index eaf027fea..82782c8c0 100644
--- a/yudao-dependencies/pom.xml
+++ b/yudao-dependencies/pom.xml
@@ -28,15 +28,15 @@
3.5.2
3.18.0
- 2.2.2
+ 2.2.3
1.7.1
8.12.0
2.7.7
0.33.0
- 7.2.9.RELEASE
- 1.0.4
+ 7.2.11.RELEASE
+ 1.0.5
4.8.0
6.7.2
@@ -60,9 +60,9 @@
3.0.0
4.10.0
8.4.6
- 4.6.2
+ 4.6.3
2.2.1
- 3.1.635
+ 3.1.637
1.4.0
1.5.4
2.12.2
diff --git a/yudao-framework/yudao-spring-boot-starter-biz-pay/pom.xml b/yudao-framework/yudao-spring-boot-starter-biz-pay/pom.xml
index 1c3a3bde1..4af8e2b6e 100644
--- a/yudao-framework/yudao-spring-boot-starter-biz-pay/pom.xml
+++ b/yudao-framework/yudao-spring-boot-starter-biz-pay/pom.xml
@@ -52,7 +52,7 @@
com.alipay.sdk
alipay-sdk-java
- 4.33.44.ALL
+ 4.34.71.ALL
org.bouncycastle
diff --git a/yudao-module-bpm/yudao-module-bpm-biz/src/main/java/cn/iocoder/yudao/module/bpm/convert/task/BpmTaskConvert.java b/yudao-module-bpm/yudao-module-bpm-biz/src/main/java/cn/iocoder/yudao/module/bpm/convert/task/BpmTaskConvert.java
index 578d11b03..015fd0fd9 100644
--- a/yudao-module-bpm/yudao-module-bpm-biz/src/main/java/cn/iocoder/yudao/module/bpm/convert/task/BpmTaskConvert.java
+++ b/yudao-module-bpm/yudao-module-bpm-biz/src/main/java/cn/iocoder/yudao/module/bpm/convert/task/BpmTaskConvert.java
@@ -48,7 +48,7 @@ public interface BpmTaskConvert {
return null;
}
try {
- T newInstance = target.newInstance();
+ T newInstance = target.getDeclaredConstructor().newInstance();
BeanUtils.copyProperties(source, newInstance);
return newInstance;
} catch (Exception e) {