Skip to content

Commit ee699af

Browse files
committed
deps: refactor dependencies
1 parent 03db45d commit ee699af

File tree

4 files changed

+46
-11
lines changed

4 files changed

+46
-11
lines changed

Diff for: front-controller/pom.xml

-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
<dependency>
5151
<groupId>org.junit.jupiter</groupId>
5252
<artifactId>junit-jupiter-params</artifactId>
53-
<version>5.11.4</version>
5453
<scope>test</scope>
5554
</dependency>
5655
<dependency>

Diff for: microservices-distributed-tracing/order-microservice/src/test/java/com/iluwatar/order/microservice/OrderControllerTest.java

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*
2+
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
3+
*
4+
* The MIT License
5+
* Copyright © 2014-2022 Ilkka Seppälä
6+
*
7+
* Permission is hereby granted, free of charge, to any person obtaining a copy
8+
* of this software and associated documentation files (the "Software"), to deal
9+
* in the Software without restriction, including without limitation the rights
10+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
* copies of the Software, and to permit persons to whom the Software is
12+
* furnished to do so, subject to the following conditions:
13+
*
14+
* The above copyright notice and this permission notice shall be included in
15+
* all copies or substantial portions of the Software.
16+
*
17+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23+
* THE SOFTWARE.
24+
*/
125
package com.iluwatar.order.microservice; /*
226
* This project is licensed under the MIT license. Module model-view-viewmodel is using ZK framework licensed under LGPL (see lgpl-3.0.txt).
327
*

Diff for: pom.xml

+22-9
Original file line numberDiff line numberDiff line change
@@ -35,28 +35,35 @@
3535
<name>Java Design Patterns</name>
3636
<description>Java Design Patterns</description>
3737
<properties>
38+
<!-- General properties -->
3839
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
39-
<sonar-maven-plugin.version>5.0.0.4389</sonar-maven-plugin.version>
40+
41+
<!-- Spring Boot related dependencies. Keep these in sync! -->
4042
<spring-boot.version>3.4.4</spring-boot.version>
43+
<junit.version>5.11.4</junit.version>
44+
<mockito.version>5.14.2</mockito.version>
45+
<logback.version>1.5.18</logback.version>
46+
<slf4j.version>2.0.17</slf4j.version>
47+
48+
<!-- Other dependencies -->
4149
<jacoco.version>0.8.12</jacoco.version>
4250
<commons-dbcp.version>1.4</commons-dbcp.version>
4351
<htmlunit.version>4.7.0</htmlunit.version>
4452
<gson.version>2.11.0</gson.version>
4553
<guice.version>6.0.0</guice.version>
4654
<system-lambda.version>1.1.0</system-lambda.version>
47-
<maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version>
48-
<license-maven-plugin.version>4.6</license-maven-plugin.version>
49-
<urm-maven-plugin.version>2.1.1</urm-maven-plugin.version>
50-
<maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version>
5155
<lombok.version>1.18.36</lombok.version>
52-
<junit.version>5.11.4</junit.version>
53-
<slf4j.version>2.0.17</slf4j.version>
54-
<logback.version>1.5.18</logback.version>
55-
<mockito.version>5.16.1</mockito.version>
5656
<mongo.version>5.4.0</mongo.version>
5757
<bson.version>5.4.0</bson.version>
5858
<h2.version>2.3.232</h2.version>
59+
60+
<!-- Plugins -->
61+
<maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version>
62+
<license-maven-plugin.version>4.6</license-maven-plugin.version>
63+
<maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version>
64+
5965
<!-- SonarCloud -->
66+
<sonar-maven-plugin.version>5.0.0.4389</sonar-maven-plugin.version>
6067
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
6168
<sonar.organization>iluwatar</sonar.organization>
6269
<sonar.projectKey>iluwatar_java-design-patterns</sonar.projectKey>
@@ -308,6 +315,12 @@
308315
<version>${junit.version}</version>
309316
<scope>test</scope>
310317
</dependency>
318+
<dependency>
319+
<groupId>org.junit.jupiter</groupId>
320+
<artifactId>junit-jupiter-params</artifactId>
321+
<version>${junit.version}</version>
322+
<scope>test</scope>
323+
</dependency>
311324
<dependency>
312325
<groupId>org.junit.jupiter</groupId>
313326
<artifactId>junit-jupiter-migrationsupport</artifactId>

Diff for: table-inheritance/pom.xml

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
<dependency>
4242
<groupId>org.junit.jupiter</groupId>
4343
<artifactId>junit-jupiter-engine</artifactId>
44-
<version>5.7.0</version>
4544
<scope>test</scope>
4645
</dependency>
4746
<dependency>

0 commit comments

Comments
 (0)