Skip to content

Commit 38ab211

Browse files
committed
update framework
1 parent 3c08119 commit 38ab211

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

publiccms-parent/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ subprojects {
6969
// https://mvnrepository.com/artifact/org.mybatis.dynamic-sql/mybatis-dynamic-sql
7070
dynamicSqlVersion = "1.5.2"
7171
// http://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
72-
jacksonVersion = "2.20.0"
72+
jacksonVersion = "2.20.1"
7373
// http://mvnrepository.com/artifact/org.freemarker/freemarker
7474
freemarkerVersion = "2.3.34"
7575
// https://mvnrepository.com/artifact/org.apache.lucene/lucene-analyzers-smartcn
7676
luceneVersion = "8.11.4"
7777
// http://mvnrepository.com/artifact/redis.clients/jedis
7878
// https://github.com/redis/jedis
79-
jedisVersion = "7.0.0"
79+
jedisVersion = "7.1.0"
8080
// http://mvnrepository.com/artifact/org.quartz-scheduler/quartz
8181
// https://github.com/quartz-scheduler/quartz/releases
8282
// 2.5 for jakarta
@@ -86,29 +86,29 @@ subprojects {
8686
// 5,6,7 for Java 11+
8787
hikariCPVersion = "4.0.3"
8888
// https://mvnrepository.com/artifact/com.mysql/mysql-connector-j
89-
mysqlVersion = "9.4.0"
89+
mysqlVersion = "9.5.0"
9090
// http://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient
9191
// http://hc.apache.org/downloads.cgi
9292
httpclientVersion = "4.5.14"
9393
// https://mvnrepository.com/artifact/fr.opensagres.xdocreport/fr.opensagres.poi.xwpf.converter.xhtml
9494
// 2.1.0 for Java 17+
9595
xhtmlConverterVersion = "2.0.6"
9696
// https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml
97-
poiVersion = "5.4.1"
97+
poiVersion = "5.5.0"
9898
// http://mvnrepository.com/artifact/commons-fileupload/commons-fileupload
9999
fileuploadVersion = "1.6.0"
100100
// http://mvnrepository.com/artifact/org.apache.commons/commons-collections4
101101
collectionsVersion = "4.5.0"
102102
// http://mvnrepository.com/artifact/org.apache.commons/commons-lang3
103-
langVersion = "3.19.0"
103+
langVersion = "3.20.0"
104104
// http://mvnrepository.com/artifact/commons-io/commons-io
105-
ioVersion = "2.20.0"
105+
ioVersion = "2.21.0"
106106
// https://mvnrepository.com/artifact/org.apache.commons/commons-text
107107
textVersion = "1.14.0"
108108
// https://mvnrepository.com/artifact/org.apache.commons/commons-compress
109109
compressVersion = "1.28.0"
110110
// http://mvnrepository.com/artifact/commons-codec/commons-codec
111-
codecVersion = "1.19.0"
111+
codecVersion = "1.20.0"
112112
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core
113113
log4jVersion = "2.25.2"
114114
// https://mvnrepository.com/artifact/com.drewnoakes/metadata-extractor

publiccms-parent/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@
6464
<!-- https://mvnrepository.com/artifact/org.ehcache/ehcache -->
6565
<version.ehcache>3.10.8</version.ehcache>
6666
<!-- http://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
67-
<version.jackson>2.20.0</version.jackson>
67+
<version.jackson>2.20.1</version.jackson>
6868
<!-- http://mvnrepository.com/artifact/org.freemarker/freemarker -->
6969
<version.freemarker>2.3.34</version.freemarker>
7070
<!-- https://mvnrepository.com/artifact/org.apache.lucene/lucene-core -->
7171
<version.lucene>8.11.4</version.lucene>
7272
<!-- http://mvnrepository.com/artifact/redis.clients/jedis -->
7373
<!-- https://github.com/redis/jedis -->
74-
<version.jedis>7.0.0</version.jedis>
74+
<version.jedis>7.1.0</version.jedis>
7575
<!-- http://mvnrepository.com/artifact/org.quartz-scheduler/quartz -->
7676
<!-- 2.5 for jakarta -->
7777
<version.quartz>2.4.0</version.quartz>
@@ -80,12 +80,12 @@
8080
<!-- 5,6,7 for Java 11+ -->
8181
<version.hikariCP>4.0.3</version.hikariCP>
8282
<!-- https://mvnrepository.com/artifact/com.mysql/mysql-connector-j -->
83-
<version.mysql>9.4.0</version.mysql>
83+
<version.mysql>9.5.0</version.mysql>
8484
<!-- http://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
8585
<!-- http://hc.apache.org/downloads.cgi -->
8686
<version.httpclient>4.5.14</version.httpclient>
8787
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
88-
<version.poi>5.4.1</version.poi>
88+
<version.poi>5.5.0</version.poi>
8989
<!-- https://mvnrepository.com/artifact/fr.opensagres.xdocreport/fr.opensagres.poi.xwpf.converter.xhtml -->
9090
<!-- 2.1.0 for Java 17+ -->
9191
<version.xhtmlConverter>2.0.6</version.xhtmlConverter>
@@ -94,15 +94,15 @@
9494
<!-- http://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
9595
<version.collections>4.5.0</version.collections>
9696
<!-- http://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
97-
<version.lang>3.19.0</version.lang>
97+
<version.lang>3.20.0</version.lang>
9898
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
99-
<version.io>2.20.0</version.io>
99+
<version.io>2.21.0</version.io>
100100
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-text -->
101101
<version.text>1.14.0</version.text>
102102
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-compress -->
103103
<version.compress>1.28.0</version.compress>
104104
<!-- http://mvnrepository.com/artifact/commons-codec/commons-codec -->
105-
<version.codec>1.19.0</version.codec>
105+
<version.codec>1.20.0</version.codec>
106106
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
107107
<version.log4j>2.25.2</version.log4j>
108108
<!-- https://mvnrepository.com/artifact/com.drewnoakes/metadata-extractor -->

publiccms-parent/publiccms-oss/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
implementation project(':publiccms-core')
99

1010
// https://mvnrepository.com/artifact/software.amazon.awssdk/s3
11-
implementation "software.amazon.awssdk:s3:2.35.11"
11+
implementation "software.amazon.awssdk:s3:2.39.1"
1212

1313
compileOnly "com.github.therapi:therapi-runtime-javadoc-scribe:${therapiJavadocVersion}"
1414
compileOnly "javax.servlet:javax.servlet-api:${servletVersion}"

publiccms-parent/publiccms-oss/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>software.amazon.awssdk</groupId>
2121
<artifactId>s3</artifactId>
22-
<version>2.35.11</version>
22+
<version>2.39.1</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>com.github.therapi</groupId>

publiccms-parent/publiccms-oss/src/main/java/com/publiccms/common/tools/OSSUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
import javax.crypto.Mac;
88
import javax.crypto.spec.SecretKeySpec;
99

10-
import software.amazon.awssdk.auth.signer.internal.SignerConstant;
1110
import software.amazon.awssdk.auth.signer.internal.SigningAlgorithm;
11+
import software.amazon.awssdk.http.auth.aws.signer.SignerConstant;
1212
import software.amazon.awssdk.utils.DateUtils;
1313

1414
public class OSSUtils {

0 commit comments

Comments
 (0)