|
44 | 44 | <properties>
|
45 | 45 | <spring-boot.version>3.3.3</spring-boot.version>
|
46 | 46 | <spring-cloud.version>2023.0.1</spring-cloud.version>
|
47 |
| - <spring.version>6.1.12</spring.version> |
48 | 47 |
|
49 |
| - <lombok.version>1.18.34</lombok.version> |
50 |
| - <jackson.version>2.15.2</jackson.version> |
51 |
| - <jakarta.validation.version>3.0.2</jakarta.validation.version> |
52 |
| - <jakarta.persistence.version>3.1.0</jakarta.persistence.version> |
| 48 | + <powsybl-dependencies.version>2025.0.2</powsybl-dependencies.version> |
| 49 | + <powsybl-network-store-client.version>1.27.2</powsybl-network-store-client.version> |
53 | 50 |
|
| 51 | + <lombok.version>1.18.34</lombok.version> |
54 | 52 | <org-apache-commons.version>4.4</org-apache-commons.version>
|
55 |
| - |
56 |
| - <junit.jupiter.version>5.10.2</junit.jupiter.version> |
57 | 53 | <org.hamcrest.version>2.2</org.hamcrest.version>
|
58 |
| - <org.mockito.version>5.11.0</org.mockito.version> |
59 |
| - <assertj.version>3.24.2</assertj.version> |
60 |
| - <jsonassert.version>1.5.1</jsonassert.version> |
61 |
| - |
62 |
| - <powsybl-dependencies.version>2025.0.1</powsybl-dependencies.version> |
63 |
| - <powsybl-network-store-client.version>1.27.2</powsybl-network-store-client.version> |
64 |
| - |
65 |
| - <gridsuite-filter.version>1.6.0-SNAPSHOT</gridsuite-filter.version> |
66 | 54 |
|
67 |
| - <aspectj.version>1.9.22.1</aspectj.version> |
68 |
| - <micrometer.version>1.13.3</micrometer.version> |
69 |
| - <spring-cloud-stream.version>4.1.1</spring-cloud-stream.version> |
70 |
| - <spring-data-jpa.version>3.3.3</spring-data-jpa.version> |
| 55 | + <gridsuite-filter.version>1.4.0</gridsuite-filter.version> |
71 | 56 |
|
72 | 57 | <sonar.organization>gridsuite</sonar.organization>
|
73 | 58 | <sonar.projectKey>org.gridsuite:computation</sonar.projectKey>
|
|
130 | 115 | <dependency>
|
131 | 116 | <groupId>org.junit.jupiter</groupId>
|
132 | 117 | <artifactId>junit-jupiter-params</artifactId>
|
133 |
| - <version>${junit.jupiter.version}</version> |
134 | 118 | </dependency>
|
135 | 119 | <dependency>
|
136 | 120 | <groupId>org.hamcrest</groupId>
|
137 | 121 | <artifactId>hamcrest</artifactId>
|
138 |
| - <version>${org.hamcrest.version}</version> |
139 |
| - </dependency> |
140 |
| - <dependency> |
141 |
| - <groupId>org.mockito</groupId> |
142 |
| - <artifactId>mockito-core</artifactId> |
143 |
| - <version>${org.mockito.version}</version> |
144 |
| - </dependency> |
145 |
| - <dependency> |
146 |
| - <groupId>org.assertj</groupId> |
147 |
| - <artifactId>assertj-core</artifactId> |
148 |
| - <version>${assertj.version}</version> |
149 | 122 | </dependency>
|
150 | 123 | </dependencies>
|
151 | 124 | </dependencyManagement>
|
|
170 | 143 | <dependency>
|
171 | 144 | <groupId>jakarta.validation</groupId>
|
172 | 145 | <artifactId>jakarta.validation-api</artifactId>
|
173 |
| - <version>${jakarta.validation.version}</version> |
174 | 146 | </dependency>
|
175 | 147 | <dependency>
|
176 | 148 | <groupId>jakarta.persistence</groupId>
|
177 | 149 | <artifactId>jakarta.persistence-api</artifactId>
|
178 |
| - <version>${jakarta.persistence.version}</version> |
179 | 150 | </dependency>
|
180 | 151 |
|
181 | 152 | <!-- Spring Framework -->
|
182 | 153 | <dependency>
|
183 | 154 | <groupId>org.springframework</groupId>
|
184 | 155 | <artifactId>spring-core</artifactId>
|
185 |
| - <version>${spring.version}</version> |
186 |
| - </dependency> |
187 |
| - <dependency> |
188 |
| - <groupId>org.springframework</groupId> |
189 |
| - <artifactId>spring-context</artifactId> |
190 |
| - <version>${spring.version}</version> |
191 | 156 | </dependency>
|
192 | 157 | <dependency>
|
193 | 158 | <groupId>org.springframework</groupId>
|
194 | 159 | <artifactId>spring-messaging</artifactId>
|
195 |
| - <version>${spring.version}</version> |
196 | 160 | </dependency>
|
197 | 161 |
|
198 | 162 | <!-- Spring Data -->
|
199 | 163 | <dependency>
|
200 | 164 | <groupId>org.springframework.data</groupId>
|
201 | 165 | <artifactId>spring-data-jpa</artifactId>
|
202 |
| - <version>${spring-data-jpa.version}</version> |
203 | 166 | </dependency>
|
204 | 167 |
|
205 | 168 | <!-- Spring Cloud -->
|
206 | 169 | <dependency>
|
207 | 170 | <groupId>org.springframework.cloud</groupId>
|
208 | 171 | <artifactId>spring-cloud-stream</artifactId>
|
209 |
| - <version>${spring-cloud-stream.version}</version> |
210 | 172 | </dependency>
|
211 | 173 |
|
212 | 174 | <!-- AspectJ -->
|
213 | 175 | <dependency>
|
214 | 176 | <groupId>org.aspectj</groupId>
|
215 | 177 | <artifactId>aspectjweaver</artifactId>
|
216 |
| - <version>${aspectj.version}</version> |
217 | 178 | <optional>true</optional>
|
218 | 179 | </dependency>
|
219 | 180 |
|
220 | 181 | <!-- Micrometer -->
|
221 | 182 | <dependency>
|
222 | 183 | <groupId>io.micrometer</groupId>
|
223 | 184 | <artifactId>micrometer-core</artifactId>
|
224 |
| - <version>${micrometer.version}</version> |
225 | 185 | <optional>true</optional>
|
226 | 186 | </dependency>
|
227 | 187 |
|
|
275 | 235 | <dependency>
|
276 | 236 | <groupId>org.mockito</groupId>
|
277 | 237 | <artifactId>mockito-junit-jupiter</artifactId>
|
278 |
| - <version>${org.mockito.version}</version> |
279 | 238 | <scope>test</scope>
|
280 | 239 | </dependency>
|
281 | 240 |
|
|
290 | 249 | <dependency>
|
291 | 250 | <groupId>org.hamcrest</groupId>
|
292 | 251 | <artifactId>hamcrest</artifactId>
|
| 252 | + <version>${org.hamcrest.version}</version> |
293 | 253 | <scope>test</scope>
|
294 | 254 | </dependency>
|
295 | 255 |
|
296 | 256 | <!-- JSON Assert -->
|
297 | 257 | <dependency>
|
298 | 258 | <groupId>org.skyscreamer</groupId>
|
299 | 259 | <artifactId>jsonassert</artifactId>
|
300 |
| - <version>${jsonassert.version}</version> |
301 | 260 | <scope>test</scope>
|
302 | 261 | </dependency>
|
303 | 262 |
|
|
0 commit comments