Skip to content

Commit c2e9178

Browse files
fix(core): beanutils升级后兼容问题 (#2116)
Close #2001 Signed-off-by: unknowIfGuestInDream <liang.tang.cx@gmail.com>
1 parent ffb23fe commit c2e9178

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

core/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@
6969
<artifactId>commons-beanutils</artifactId>
7070
<scope>compile</scope>
7171
</dependency>
72+
<!-- require by commons-beanutils -->
73+
<dependency>
74+
<groupId>commons-collections</groupId>
75+
<artifactId>commons-collections</artifactId>
76+
<scope>compile</scope>
77+
</dependency>
7278
<dependency>
7379
<groupId>commons-io</groupId>
7480
<artifactId>commons-io</artifactId>

core/src/main/java/module-info.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
requires org.apache.commons.lang3;
4141
requires javafx.controls;
4242
requires org.apache.commons.configuration2;
43+
requires org.apache.commons.beanutils;
4344
requires org.controlsfx.controls;
4445
requires cn.hutool.log;
4546
requires cn.hutool.core;

pom.xml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,13 @@
119119
<slf4j-api.version>2.0.17</slf4j-api.version>
120120
<commons-io.version>2.19.0</commons-io.version>
121121
<commons-configuration2.version>2.12.0</commons-configuration2.version>
122-
<commons-beanutils.version>1.9.4</commons-beanutils.version>
122+
<commons-beanutils.version>1.10.1</commons-beanutils.version>
123123
<commons-csv.version>1.14.0</commons-csv.version>
124124
<commons-compress.version>1.27.1</commons-compress.version>
125125
<commons-exec.version>1.4.0</commons-exec.version>
126126
<commons-text.version>1.13.1</commons-text.version>
127127
<commons-email.version>1.6.0</commons-email.version>
128+
<commons-collections.version>3.2.2</commons-collections.version>
128129
<commons-collections4.version>4.5.0</commons-collections4.version>
129130
<commons-math3.version>3.6.1</commons-math3.version>
130131
<commons-crypto.version>1.2.0</commons-crypto.version>
@@ -142,7 +143,7 @@
142143
<dom4j.version>2.1.4</dom4j.version>
143144
<jexl.version>3.5.0</jexl.version>
144145
<pdfbox.version>3.0.4</pdfbox.version>
145-
<pdfviewfx.version>3.1.1</pdfviewfx.version>
146+
<pdfviewfx.version>3.1.0</pdfviewfx.version>
146147
<jackson.version>2.19.0</jackson.version>
147148
<testfx.version>4.0.18</testfx.version>
148149
<assertj.version>3.27.3</assertj.version>
@@ -167,7 +168,7 @@
167168
<jython.version>2.7.4</jython.version>
168169
<violations.version>1.157.3</violations.version>
169170
<asm.version>9.8</asm.version>
170-
<pmd.version>7.13.0</pmd.version>
171+
<pmd.version>7.12.0</pmd.version>
171172
<bytebuddy.version>1.17.5</bytebuddy.version>
172173
<tess4j.version>5.15.0</tess4j.version>
173174
<hikariCP.version>6.3.0</hikariCP.version>
@@ -391,6 +392,11 @@
391392
<artifactId>commons-email</artifactId>
392393
<version>${commons-email.version}</version>
393394
</dependency>
395+
<dependency>
396+
<groupId>commons-collections</groupId>
397+
<artifactId>commons-collections</artifactId>
398+
<version>${commons-collections.version}</version>
399+
</dependency>
394400
<dependency>
395401
<groupId>org.apache.commons</groupId>
396402
<artifactId>commons-collections4</artifactId>

0 commit comments

Comments
 (0)