Skip to content

Commit 8d404c5

Browse files
committed
update maven dependencies
1 parent 68ca28b commit 8d404c5

File tree

1 file changed

+29
-24
lines changed

1 file changed

+29
-24
lines changed

pom.xml

Lines changed: 29 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
<jdk.min.version>17</jdk.min.version>
3333
<maven.compiler.source>17</maven.compiler.source>
3434
<maven.compiler.target>17</maven.compiler.target>
35-
<junit.version>5.9.2</junit.version>
35+
<junit.version>5.10.2</junit.version>
3636
<jacoco.version>0.8.11</jacoco.version>
3737
<sonar.apiVersion>10.7.0.2191</sonar.apiVersion>
38-
<sonar.testingHarnessVersion>10.0.0.68432</sonar.testingHarnessVersion>
38+
<sonar.testingHarnessVersion>10.5.1.90531</sonar.testingHarnessVersion>
3939
<sonar.Version>10.5.1.90531</sonar.Version>
4040
<sonar-packaging-maven-plugin.version>1.23.0.740</sonar-packaging-maven-plugin.version>
4141
<sonar.pluginKey>cnesreport</sonar.pluginKey>
@@ -86,16 +86,18 @@
8686
</developers>
8787

8888
<dependencies>
89+
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-csv -->
8990
<dependency>
9091
<groupId>org.apache.commons</groupId>
9192
<artifactId>commons-csv</artifactId>
92-
<version>1.10.0</version>
93+
<version>1.11.0</version>
9394
<scope>compile</scope>
9495
</dependency>
96+
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
9597
<dependency>
9698
<groupId>org.slf4j</groupId>
9799
<artifactId>slf4j-api</artifactId>
98-
<version>1.7.36</version>
100+
<version>2.0.13</version>
99101
<scope>compile</scope>
100102
</dependency>
101103
<dependency>
@@ -115,57 +117,57 @@
115117
<artifactId>sonar-core</artifactId>
116118
<version>${sonar.Version}</version>
117119
</dependency>
120+
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5 -->
118121
<dependency>
119-
<!-- network use -->
120-
<groupId>org.apache.httpcomponents</groupId>
121-
<artifactId>httpclient</artifactId>
122-
<version>4.5.14</version>
122+
<groupId>org.apache.httpcomponents.client5</groupId>
123+
<artifactId>httpclient5</artifactId>
124+
<version>5.3.1</version>
123125
<scope>compile</scope>
124126
</dependency>
127+
<!-- https://mvnrepository.com/artifact/commons-cli/commons-cli -->
125128
<dependency>
126-
<!-- https://mvnrepository.com/artifact/commons-cli/commons-cli -->
127129
<groupId>commons-cli</groupId>
128130
<artifactId>commons-cli</artifactId>
129-
<version>1.4</version>
131+
<version>1.8.0</version>
130132
<scope>compile</scope>
131133
</dependency>
134+
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
132135
<dependency>
133-
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
134136
<groupId>commons-io</groupId>
135137
<artifactId>commons-io</artifactId>
136-
<version>2.11.0</version>
138+
<version>2.16.1</version>
137139
</dependency>
140+
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
138141
<dependency>
139-
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
140142
<groupId>org.apache.commons</groupId>
141143
<artifactId>commons-lang3</artifactId>
142-
<version>3.12.0</version>
144+
<version>3.14.0</version>
143145
<scope>compile</scope>
144146
</dependency>
147+
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-math3 -->
145148
<dependency>
146-
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-math3 -->
147149
<groupId>org.apache.commons</groupId>
148150
<artifactId>commons-math3</artifactId>
149151
<version>3.6.1</version>
150152
</dependency>
153+
<!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
151154
<dependency>
152-
<!-- packaged with the plugin -->
153155
<groupId>commons-logging</groupId>
154156
<artifactId>commons-logging</artifactId>
155-
<version>1.2</version>
157+
<version>1.3.2</version>
156158
<scope>provided</scope>
157159
</dependency>
160+
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
158161
<dependency>
159-
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
160162
<groupId>com.google.guava</groupId>
161163
<artifactId>guava</artifactId>
162-
<version>32.0.0-jre</version>
164+
<version>33.2.0-jre</version>
163165
</dependency>
166+
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
164167
<dependency>
165-
<!-- json parsing -->
166168
<groupId>com.google.code.gson</groupId>
167169
<artifactId>gson</artifactId>
168-
<version>2.10.1</version>
170+
<version>2.11.0</version>
169171
<scope>compile</scope>
170172
</dependency>
171173
<!-- https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java -->
@@ -174,19 +176,20 @@
174176
<artifactId>protobuf-java</artifactId>
175177
<version>4.0.0-rc-2</version>
176178
</dependency>
179+
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
177180
<dependency>
178-
<!-- openxml generation -->
179181
<groupId>org.apache.poi</groupId>
180182
<artifactId>poi-ooxml</artifactId>
181183
<version>4.1.2</version>
182-
<scope>compile</scope>
183184
</dependency>
185+
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-schemas -->
184186
<dependency>
185187
<groupId>org.apache.poi</groupId>
186188
<artifactId>poi-ooxml-schemas</artifactId>
187189
<version>4.1.2</version>
188190
<scope>compile</scope>
189191
</dependency>
192+
<!-- https://mvnrepository.com/artifact/org.apache.poi/ooxml-security -->
190193
<dependency>
191194
<groupId>org.apache.poi</groupId>
192195
<artifactId>ooxml-security</artifactId>
@@ -211,16 +214,18 @@
211214
<artifactId>junit-vintage-engine</artifactId>
212215
<version>${junit.version}</version>
213216
</dependency>
217+
<!-- https://mvnrepository.com/artifact/com.github.stefanbirkner/system-rules -->
214218
<dependency>
215219
<groupId>com.github.stefanbirkner</groupId>
216220
<artifactId>system-rules</artifactId>
217221
<version>1.19.0</version>
218222
<scope>test</scope>
219223
</dependency>
224+
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-core -->
220225
<dependency>
221226
<groupId>org.mockito</groupId>
222227
<artifactId>mockito-core</artifactId>
223-
<version>5.10.0</version>
228+
<version>5.12.0</version>
224229
<scope>test</scope>
225230
</dependency>
226231

0 commit comments

Comments
 (0)