Skip to content

Commit 379f060

Browse files
fix(deps): update all dependencies
1 parent bb746e0 commit 379f060

File tree

11 files changed

+50
-50
lines changed

11 files changed

+50
-50
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414
matrix:
1515
java: [11, 17]
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: Set up JDK
19-
uses: actions/setup-java@v3
19+
uses: actions/setup-java@v4
2020
with:
2121
check-latest: true
2222
distribution: adopt
2323
java-version: ${{ matrix.java }}
24-
- uses: actions/cache@v3
24+
- uses: actions/cache@v4
2525
env:
2626
cache-name: cache-maven-artifacts
2727
with:

dc-commons-file/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,41 +56,41 @@
5656
<dependency>
5757
<groupId>org.slf4j</groupId>
5858
<artifactId>slf4j-api</artifactId>
59-
<version>1.7.36</version>
59+
<version>2.0.17</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>org.slf4j</groupId>
6363
<artifactId>slf4j-simple</artifactId>
64-
<version>1.7.36</version>
64+
<version>2.0.17</version>
6565
<scope>test</scope>
6666
</dependency>
6767
<dependency>
6868
<groupId>org.springframework.boot</groupId>
6969
<artifactId>spring-boot</artifactId>
70-
<version>2.3.12.RELEASE</version>
70+
<version>3.5.0</version>
7171
</dependency>
7272
<dependency>
7373
<groupId>org.springframework.boot</groupId>
7474
<artifactId>spring-boot-configuration-processor</artifactId>
75-
<version>2.3.12.RELEASE</version>
75+
<version>3.5.0</version>
7676
<optional>true</optional>
7777
</dependency>
7878
<dependency>
7979
<groupId>org.springframework.boot</groupId>
8080
<artifactId>spring-boot-test</artifactId>
81-
<version>2.3.12.RELEASE</version>
81+
<version>3.5.0</version>
8282
<scope>test</scope>
8383
</dependency>
8484
<dependency>
8585
<groupId>org.springframework</groupId>
8686
<artifactId>spring-test</artifactId>
87-
<version>5.2.22.RELEASE</version>
87+
<version>6.2.7</version>
8888
<scope>test</scope>
8989
</dependency>
9090
<dependency>
9191
<groupId>org.yaml</groupId>
9292
<artifactId>snakeyaml</artifactId>
93-
<version>1.33</version>
93+
<version>2.4</version>
9494
<scope>test</scope>
9595
</dependency>
9696
</dependencies>

dc-commons-server/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>com.maxmind.geoip2</groupId>
2626
<artifactId>geoip2</artifactId>
27-
<version>2.14.0</version>
27+
<version>4.3.0</version>
2828
<exclusions>
2929
<exclusion>
3030
<groupId>com.fasterxml.jackson.core</groupId>
@@ -52,12 +52,12 @@
5252
<dependency>
5353
<groupId>org.slf4j</groupId>
5454
<artifactId>slf4j-api</artifactId>
55-
<version>1.7.36</version>
55+
<version>2.0.17</version>
5656
</dependency>
5757
<dependency>
5858
<groupId>org.slf4j</groupId>
5959
<artifactId>slf4j-simple</artifactId>
60-
<version>1.7.36</version>
60+
<version>2.0.17</version>
6161
<scope>test</scope>
6262
</dependency>
6363
</dependencies>

dc-commons-springaop/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@
2424
<dependency>
2525
<groupId>org.slf4j</groupId>
2626
<artifactId>slf4j-api</artifactId>
27-
<version>1.7.36</version>
27+
<version>2.0.17</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>org.springframework</groupId>
3131
<artifactId>spring-aop</artifactId>
32-
<version>5.2.22.RELEASE</version>
32+
<version>6.2.7</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>org.springframework</groupId>
3636
<artifactId>spring-context</artifactId>
37-
<version>5.2.22.RELEASE</version>
37+
<version>6.2.7</version>
3838
</dependency>
3939
</dependencies>
4040
</project>

dc-commons-springboot/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -72,39 +72,39 @@
7272
<dependency>
7373
<groupId>org.slf4j</groupId>
7474
<artifactId>slf4j-api</artifactId>
75-
<version>1.7.36</version>
75+
<version>2.0.17</version>
7676
</dependency>
7777
<dependency>
7878
<groupId>org.springframework</groupId>
7979
<artifactId>spring-beans</artifactId>
80-
<version>5.2.22.RELEASE</version>
80+
<version>6.2.7</version>
8181
</dependency>
8282
<dependency>
8383
<groupId>org.springframework</groupId>
8484
<artifactId>spring-context</artifactId>
85-
<version>5.2.22.RELEASE</version>
85+
<version>6.2.7</version>
8686
</dependency>
8787
<dependency>
8888
<groupId>org.springframework</groupId>
8989
<artifactId>spring-test</artifactId>
90-
<version>5.2.22.RELEASE</version>
90+
<version>6.2.7</version>
9191
<scope>test</scope>
9292
</dependency>
9393
<dependency>
9494
<groupId>org.springframework.boot</groupId>
9595
<artifactId>spring-boot-actuator</artifactId>
96-
<version>2.3.12.RELEASE</version>
96+
<version>3.5.0</version>
9797
</dependency>
9898
<dependency>
9999
<groupId>org.springframework.boot</groupId>
100100
<artifactId>spring-boot-test</artifactId>
101-
<version>2.3.12.RELEASE</version>
101+
<version>3.5.0</version>
102102
<scope>test</scope>
103103
</dependency>
104104
<dependency>
105105
<groupId>org.yaml</groupId>
106106
<artifactId>snakeyaml</artifactId>
107-
<version>1.33</version>
107+
<version>2.4</version>
108108
<scope>test</scope>
109109
</dependency>
110110
</dependencies>

dc-commons-springdata/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>org.springframework.data</groupId>
2626
<artifactId>spring-data-commons</artifactId>
27-
<version>2.7.2</version>
27+
<version>3.5.0</version>
2828
</dependency>
2929
</dependencies>
3030
</project>

dc-commons-springmvc/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,27 +53,27 @@
5353
<dependency>
5454
<groupId>org.slf4j</groupId>
5555
<artifactId>slf4j-api</artifactId>
56-
<version>1.7.36</version>
56+
<version>2.0.17</version>
5757
</dependency>
5858
<dependency>
5959
<groupId>org.springframework</groupId>
6060
<artifactId>spring-web</artifactId>
61-
<version>5.2.22.RELEASE</version>
61+
<version>6.2.7</version>
6262
</dependency>
6363
<dependency>
6464
<groupId>org.springframework</groupId>
6565
<artifactId>spring-webmvc</artifactId>
66-
<version>5.2.22.RELEASE</version>
66+
<version>6.2.7</version>
6767
</dependency>
6868
<dependency>
6969
<groupId>org.springframework.security</groupId>
7070
<artifactId>spring-security-core</artifactId>
71-
<version>5.5.7</version>
71+
<version>6.5.0</version>
7272
</dependency>
7373
<dependency>
7474
<groupId>org.springframework.security</groupId>
7575
<artifactId>spring-security-web</artifactId>
76-
<version>5.4.10</version>
76+
<version>6.5.0</version>
7777
</dependency>
7878
<dependency>
7979
<groupId>org.thymeleaf</groupId>

dc-commons-springsecurity/pom.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -62,71 +62,71 @@
6262
<dependency>
6363
<groupId>org.slf4j</groupId>
6464
<artifactId>slf4j-api</artifactId>
65-
<version>1.7.36</version>
65+
<version>2.0.17</version>
6666
</dependency>
6767
<dependency>
6868
<groupId>org.slf4j</groupId>
6969
<artifactId>slf4j-simple</artifactId>
70-
<version>1.7.36</version>
70+
<version>2.0.17</version>
7171
<scope>test</scope>
7272
</dependency>
7373
<dependency>
7474
<groupId>org.springframework</groupId>
7575
<artifactId>spring-context</artifactId>
76-
<version>5.2.22.RELEASE</version>
76+
<version>6.2.7</version>
7777
</dependency>
7878
<dependency>
7979
<groupId>org.springframework</groupId>
8080
<artifactId>spring-test</artifactId>
81-
<version>5.2.22.RELEASE</version>
81+
<version>6.2.7</version>
8282
</dependency>
8383
<dependency>
8484
<groupId>org.springframework</groupId>
8585
<artifactId>spring-web</artifactId>
86-
<version>5.2.22.RELEASE</version>
86+
<version>6.2.7</version>
8787
</dependency>
8888
<dependency>
8989
<groupId>org.springframework</groupId>
9090
<artifactId>spring-webmvc</artifactId>
91-
<version>5.2.22.RELEASE</version>
91+
<version>6.2.7</version>
9292
<scope>test</scope>
9393
</dependency>
9494
<dependency>
9595
<groupId>org.springframework.boot</groupId>
9696
<artifactId>spring-boot</artifactId>
97-
<version>2.3.12.RELEASE</version>
97+
<version>3.5.0</version>
9898
</dependency>
9999
<dependency>
100100
<groupId>org.springframework.boot</groupId>
101101
<artifactId>spring-boot-test</artifactId>
102-
<version>2.3.12.RELEASE</version>
102+
<version>3.5.0</version>
103103
<scope>test</scope>
104104
</dependency>
105105
<dependency>
106106
<groupId>org.springframework.boot</groupId>
107107
<artifactId>spring-boot-test-autoconfigure</artifactId>
108-
<version>2.3.12.RELEASE</version>
108+
<version>3.5.0</version>
109109
<scope>test</scope>
110110
</dependency>
111111
<dependency>
112112
<groupId>org.springframework.security</groupId>
113113
<artifactId>spring-security-config</artifactId>
114-
<version>5.4.10</version>
114+
<version>6.5.0</version>
115115
</dependency>
116116
<dependency>
117117
<groupId>org.springframework.security</groupId>
118118
<artifactId>spring-security-core</artifactId>
119-
<version>5.5.7</version>
119+
<version>6.5.0</version>
120120
</dependency>
121121
<dependency>
122122
<groupId>org.springframework.security</groupId>
123123
<artifactId>spring-security-web</artifactId>
124-
<version>5.4.10</version>
124+
<version>6.5.0</version>
125125
</dependency>
126126
<dependency>
127127
<groupId>org.yaml</groupId>
128128
<artifactId>snakeyaml</artifactId>
129-
<version>1.33</version>
129+
<version>2.4</version>
130130
<scope>test</scope>
131131
</dependency>
132132
</dependencies>

dc-commons-web/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>com.ibm.icu</groupId>
2121
<artifactId>icu4j</artifactId>
22-
<version>72.1</version>
22+
<version>77.1</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>org.assertj</groupId>

dc-commons-xml/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
<dependency>
2020
<groupId>com.google.guava</groupId>
2121
<artifactId>guava</artifactId>
22-
<version>32.1.1-jre</version>
22+
<version>33.4.8-jre</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>net.sf.saxon</groupId>
2626
<artifactId>Saxon-HE</artifactId>
27-
<version>10.8</version>
27+
<version>12.7</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>org.assertj</groupId>
@@ -41,12 +41,12 @@
4141
<dependency>
4242
<groupId>org.slf4j</groupId>
4343
<artifactId>slf4j-api</artifactId>
44-
<version>1.7.36</version>
44+
<version>2.0.17</version>
4545
</dependency>
4646
<dependency>
4747
<groupId>org.slf4j</groupId>
4848
<artifactId>slf4j-simple</artifactId>
49-
<version>1.7.36</version>
49+
<version>2.0.17</version>
5050
<scope>test</scope>
5151
</dependency>
5252
</dependencies>

0 commit comments

Comments
 (0)