|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
2 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | 4 | <modelVersion>4.0.0</modelVersion> |
4 | 5 | <groupId>com.bandwidth.sdk</groupId> |
5 | 6 | <artifactId>bandwidth-sdk</artifactId> |
|
43 | 44 | <maxmem>512m</maxmem> |
44 | 45 | <compilerArgs> |
45 | 46 | <arg>-Xlint:all</arg> |
46 | | - <arg>-J-Xss4m</arg> <!-- Compiling the generated JSON.java file may require larger stack size. --> |
| 47 | + <arg>-J-Xss4m</arg> <!-- Compiling the generated JSON.java file may require |
| 48 | + larger stack size. --> |
47 | 49 | </compilerArgs> |
48 | 50 | <forceJavacCompilerUse>true</forceJavacCompilerUse> |
49 | 51 | <release>${java.version}</release> |
|
87 | 89 | <threadCount>10</threadCount> |
88 | 90 | </configuration> |
89 | 91 | <dependencies> |
90 | | - <!--Custom provider and engine for Junit 5 to surefire--> |
| 92 | + <!--Custom |
| 93 | + provider and engine for Junit 5 to surefire--> |
91 | 94 | <dependency> |
92 | 95 | <groupId>org.junit.jupiter</groupId> |
93 | 96 | <artifactId>junit-jupiter-engine</artifactId> |
|
208 | 211 | <include>.gitignore</include> |
209 | 212 | </includes> |
210 | 213 | <!-- define the steps to apply to those files --> |
211 | | - <trimTrailingWhitespace/> |
212 | | - <endWithNewline/> |
| 214 | + <trimTrailingWhitespace /> |
| 215 | + <endWithNewline /> |
213 | 216 | <indent> |
214 | 217 | <spaces>true</spaces> <!-- or <tabs>true</tabs> --> |
215 | 218 | <spacesPerTab>4</spacesPerTab> <!-- optional, default is 4 --> |
|
218 | 221 | </formats> |
219 | 222 | <!-- define a language-specific format --> |
220 | 223 | <java> |
221 | | - <!-- no need to specify files, inferred automatically, but you can if you want --> |
| 224 | + <!-- no need to specify files, inferred automatically, but you can if you |
| 225 | + want --> |
222 | 226 |
|
223 | 227 | <!-- apply a specific flavor of google-java-format and reflow long strings --> |
224 | 228 | <googleJavaFormat> |
|
227 | 231 | <reflowLongStrings>true</reflowLongStrings> |
228 | 232 | </googleJavaFormat> |
229 | 233 |
|
230 | | - <removeUnusedImports/> |
231 | | - <importOrder/> |
| 234 | + <removeUnusedImports /> |
| 235 | + <importOrder /> |
232 | 236 |
|
233 | 237 | </java> |
234 | 238 | </configuration> |
|
323 | 327 | <artifactId>commons-lang3</artifactId> |
324 | 328 | <version>${commons-lang3-version}</version> |
325 | 329 | </dependency> |
| 330 | + <dependency> |
| 331 | + <groupId>commons-io</groupId> |
| 332 | + <artifactId>commons-io</artifactId> |
| 333 | + <version>${version.commons-io}</version> |
| 334 | + </dependency> |
326 | 335 | <dependency> |
327 | 336 | <groupId>jakarta.annotation</groupId> |
328 | 337 | <artifactId>jakarta.annotation-api</artifactId> |
|
365 | 374 | </dependency> |
366 | 375 | </dependencies> |
367 | 376 | <properties> |
368 | | - <java.version>11</java.version> |
| 377 | + <java.version> |
| 378 | + 11</java.version> |
369 | 379 | <maven.compiler.source>${java.version}</maven.compiler.source> |
370 | 380 | <maven.compiler.target>${java.version}</maven.compiler.target> |
371 | | - <gson-fire-version>1.8.5</gson-fire-version> |
| 381 | + <gson-fire-version> |
| 382 | + 1.8.5</gson-fire-version> |
372 | 383 | <swagger-core-version>1.6.5</swagger-core-version> |
373 | 384 | <okhttp-version>4.9.3</okhttp-version> |
374 | 385 | <gson-version>2.9.0</gson-version> |
375 | | - <commons-lang3-version>3.12.0</commons-lang3-version> |
| 386 | + <version.commons-io>2.11.0</version.commons-io> |
| 387 | + <commons-lang3-version> |
| 388 | + 3.12.0</commons-lang3-version> |
376 | 389 | <jaxb.version>4.0.0</jaxb.version> |
377 | 390 | <jackson-databind-nullable-version>0.2.3</jackson-databind-nullable-version> |
378 | | - <jakarta-annotation-version>1.3.5</jakarta-annotation-version> |
| 391 | + <jakarta-annotation-version> |
| 392 | + 1.3.5</jakarta-annotation-version> |
379 | 393 | <junit-version>5.8.2</junit-version> |
380 | 394 | <junit-platform-runner.version>1.6.2</junit-platform-runner.version> |
381 | | - <mockito-core-version>3.12.4</mockito-core-version> |
| 395 | + <mockito-core-version> |
| 396 | + 3.12.4</mockito-core-version> |
382 | 397 | <javax.ws.rs-api-version>2.1.1</javax.ws.rs-api-version> |
383 | 398 | <jsr311-api-version>1.1.1</jsr311-api-version> |
384 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 399 | + <project.build.sourceEncoding> |
| 400 | + UTF-8</project.build.sourceEncoding> |
385 | 401 | <spotless.version>2.21.0</spotless.version> |
386 | 402 | </properties> |
387 | 403 | <dependencyManagement> |
|
0 commit comments