|
37 | 37 |
|
38 | 38 | <properties> |
39 | 39 | <lombok.version>1.18.36</lombok.version> |
| 40 | + <vertx-web-client.version>4.5.11</vertx-web-client.version> |
| 41 | + <slf4j-api.version>2.0.16</slf4j-api.version> |
| 42 | + <log4j-bom.version>2.24.3</log4j-bom.version> |
| 43 | + <junit-bom.version>5.11.4</junit-bom.version> |
| 44 | + <common-client.version>2.1.3</common-client.version> |
| 45 | + <httpclient5.version>5.4.1</httpclient5.version> |
| 46 | + <okhttp.version>4.12.0</okhttp.version> |
40 | 47 | </properties> |
41 | 48 |
|
42 | 49 | <dependencyManagement> |
43 | 50 | <dependencies> |
44 | 51 | <dependency> |
45 | 52 | <groupId>org.apache.logging.log4j</groupId> |
46 | 53 | <artifactId>log4j-bom</artifactId> |
47 | | - <version>2.24.3</version> |
| 54 | + <version>${log4j-bom.version}</version> |
48 | 55 | <type>pom</type> |
49 | 56 | <scope>import</scope> |
50 | 57 | </dependency> |
51 | 58 | <dependency> |
52 | 59 | <groupId>org.junit</groupId> |
53 | 60 | <artifactId>junit-bom</artifactId> |
54 | | - <version>5.11.4</version> |
| 61 | + <version>${junit-bom.version}</version> |
55 | 62 | <type>pom</type> |
56 | 63 | <scope>import</scope> |
57 | 64 | </dependency> |
|
69 | 76 | <dependency> |
70 | 77 | <groupId>com.chavaillaz</groupId> |
71 | 78 | <artifactId>common-client</artifactId> |
72 | | - <version>2.1.3</version> |
| 79 | + <version>${common-client.version}</version> |
73 | 80 | </dependency> |
74 | 81 |
|
75 | 82 | <dependency> |
76 | 83 | <groupId>org.apache.httpcomponents.client5</groupId> |
77 | 84 | <artifactId>httpclient5</artifactId> |
78 | | - <version>5.4.1</version> |
| 85 | + <version>${httpclient5.version}</version> |
79 | 86 | <scope>compile</scope> |
80 | 87 | <optional>true</optional> |
81 | 88 | </dependency> |
82 | 89 |
|
83 | 90 | <dependency> |
84 | 91 | <groupId>com.squareup.okhttp3</groupId> |
85 | 92 | <artifactId>okhttp</artifactId> |
86 | | - <version>4.12.0</version> |
| 93 | + <version>${okhttp.version}</version> |
87 | 94 | <scope>compile</scope> |
88 | 95 | <optional>true</optional> |
89 | 96 | </dependency> |
90 | 97 |
|
91 | 98 | <dependency> |
92 | 99 | <groupId>io.vertx</groupId> |
93 | 100 | <artifactId>vertx-web-client</artifactId> |
94 | | - <version>4.5.11</version> |
| 101 | + <version>${vertx-web-client.version}</version> |
95 | 102 | <scope>compile</scope> |
96 | 103 | <optional>true</optional> |
97 | 104 | </dependency> |
98 | 105 |
|
99 | 106 | <dependency> |
100 | 107 | <groupId>org.slf4j</groupId> |
101 | 108 | <artifactId>slf4j-api</artifactId> |
102 | | - <version>2.0.16</version> |
| 109 | + <version>${slf4j-api.version}</version> |
103 | 110 | </dependency> |
104 | 111 |
|
105 | 112 | <!-- Test dependencies --> |
|
0 commit comments