|
21 | 21 |
|
22 | 22 | <groupId>com.bernardomg.example</groupId> |
23 | 23 | <artifactId>spring-ws-ldap-security-example</artifactId> |
24 | | - <version>1.0.1</version> |
| 24 | + <version>1.0.2</version> |
25 | 25 | <packaging>war</packaging> |
26 | 26 |
|
27 | 27 | <name>Spring WS LDAP Security Example</name> |
|
123 | 123 | <!-- ============================================== --> |
124 | 124 | <!-- =========== DEPENDENCIES VERSIONS ============ --> |
125 | 125 | <!-- ============================================== --> |
126 | | - <h2.version>1.4.200</h2.version> |
127 | | - <hamcrest.version>2.2</hamcrest.version> |
128 | | - <hibernate.validator.version>5.4.3.Final</hibernate.validator.version> |
129 | | - <jackson.version>2.12.4</jackson.version> |
130 | | - <spring.boot.version>2.7.4</spring.boot.version> |
131 | | - <spring.version>5.3.23</spring.version> |
| 126 | + <spring.boot.version>3.0.5</spring.boot.version> |
| 127 | + <spring.version>6.0.8</spring.version> |
| 128 | + <micrometer.version>1.10.6</micrometer.version> |
132 | 129 | <!-- ============================================== --> |
133 | 130 | <!-- ============== PLUGINS VERSIONS ============== --> |
134 | 131 | <!-- ============================================== --> |
|
141 | 138 | <!-- ============================================== --> |
142 | 139 | <!-- ================= MAVEN SITE ================= --> |
143 | 140 | <!-- ============================================== --> |
144 | | - <site.skin.version>2.3.0</site.skin.version> |
| 141 | + <site.skin.version>2.3.2</site.skin.version> |
145 | 142 | </properties> |
146 | 143 |
|
147 | 144 | <!-- ********************************************** --> |
|
166 | 163 | <type>pom</type> |
167 | 164 | <scope>import</scope> |
168 | 165 | </dependency> |
169 | | - <dependency> |
170 | | - <!-- Jackson BOM --> |
171 | | - <groupId>com.fasterxml.jackson</groupId> |
172 | | - <artifactId>jackson-bom</artifactId> |
173 | | - <version>${jackson.version}</version> |
174 | | - <type>pom</type> |
175 | | - <scope>import</scope> |
176 | | - </dependency> |
177 | 166 | </dependencies> |
178 | 167 | </dependencyManagement> |
179 | 168 |
|
|
312 | 301 | <!-- ============================================== --> |
313 | 302 | <dependency> |
314 | 303 | <!-- JPA API --> |
315 | | - <groupId>javax.persistence</groupId> |
316 | | - <artifactId>javax.persistence-api</artifactId> |
| 304 | + <groupId>jakarta.persistence</groupId> |
| 305 | + <artifactId>jakarta.persistence-api</artifactId> |
317 | 306 | </dependency> |
318 | 307 | <!-- ============================================== --> |
319 | 308 | <!-- ================ HIBERNATE =================== --> |
320 | 309 | <!-- ============================================== --> |
321 | 310 | <dependency> |
322 | 311 | <!-- Hibernate Core --> |
323 | | - <groupId>org.hibernate</groupId> |
| 312 | + <groupId>org.hibernate.orm</groupId> |
324 | 313 | <artifactId>hibernate-core</artifactId> |
325 | 314 | </dependency> |
326 | | - <dependency> |
327 | | - <!-- Hibernate Ehcache --> |
328 | | - <groupId>org.hibernate</groupId> |
329 | | - <artifactId>hibernate-ehcache</artifactId> |
330 | | - </dependency> |
331 | | - <dependency> |
332 | | - <!-- Hibernate validator --> |
333 | | - <groupId>org.hibernate</groupId> |
334 | | - <artifactId>hibernate-validator</artifactId> |
335 | | - <version>${hibernate.validator.version}</version> |
336 | | - </dependency> |
337 | 315 | <dependency> |
338 | 316 | <!-- Hikari CP --> |
339 | 317 | <groupId>com.zaxxer</groupId> |
|
354 | 332 | <artifactId>h2</artifactId> |
355 | 333 | </dependency> |
356 | 334 | <!-- ============================================== --> |
| 335 | + <!-- ========== DEPENDENCY CONVERGENCE ============ --> |
| 336 | + <!-- ============================================== --> |
| 337 | + <dependency> |
| 338 | + <!-- Micrometer Commons --> |
| 339 | + <groupId>io.micrometer</groupId> |
| 340 | + <artifactId>micrometer-commons</artifactId> |
| 341 | + <version>${micrometer.version}</version> |
| 342 | + </dependency> |
| 343 | + <dependency> |
| 344 | + <!-- Micrometer Observation --> |
| 345 | + <groupId>io.micrometer</groupId> |
| 346 | + <artifactId>micrometer-observation</artifactId> |
| 347 | + <version>${micrometer.version}</version> |
| 348 | + </dependency> |
| 349 | + <!-- ============================================== --> |
357 | 350 | <!-- ================ LIQUIBASE =================== --> |
358 | 351 | <!-- ============================================== --> |
359 | 352 | <dependency> |
|
0 commit comments