2022-02-08 14:26:36 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2022-02-08 14:33:55 -05:00
|
|
|
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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>core</artifactId>
|
|
|
|
<name>core</name>
|
2022-02-08 14:26:36 -05:00
|
|
|
|
2022-02-08 14:33:55 -05:00
|
|
|
<parent>
|
|
|
|
<artifactId>parent-project</artifactId>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2022-03-14 13:28:20 -04:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2022-02-08 14:33:55 -05:00
|
|
|
</parent>
|
2022-02-08 14:26:36 -05:00
|
|
|
|
2022-03-14 13:28:20 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
2022-03-15 07:45:19 -04:00
|
|
|
<version>${spring-core.version}</version>
|
2022-03-14 13:28:20 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2022-03-15 07:45:19 -04:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<spring-core.version>4.3.30.RELEASE</spring-core.version>
|
|
|
|
</properties>
|
2022-05-08 07:06:25 -04:00
|
|
|
|
2022-03-13 05:18:44 -04:00
|
|
|
</project>
|