2019-12-05 16:56:52 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-04-22 17:17:24 +05:30
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2020-03-15 18:22:24 +05:30
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-10-31 20:43:47 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>parent-spring-5</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>parent-spring-5</name>
|
|
|
|
<packaging>pom</packaging>
|
2019-12-05 16:56:52 +02:00
|
|
|
<description>Parent for all spring 5 core modules</description>
|
2019-10-31 20:43:47 -05:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
2022-12-11 05:16:29 +00:00
|
|
|
<spring.version>5.3.24</spring.version>
|
2022-09-27 19:39:42 +05:30
|
|
|
<spring-security.version>5.7.3</spring-security.version>
|
2020-07-07 14:18:10 +03:00
|
|
|
<spring-boot-starter-test.version>1.5.10.RELEASE</spring-boot-starter-test.version>
|
2019-10-31 20:43:47 -05:00
|
|
|
</properties>
|
|
|
|
|
2022-12-11 05:16:29 +00:00
|
|
|
</project>
|