37 lines
1.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
2022-02-09 01:03:55 +05:30
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>parent-project</artifactId>
<version>1.0-SNAPSHOT</version>
2022-02-09 01:03:55 +05:30
<name>parent-project</name>
<packaging>pom</packaging>
2022-02-09 01:03:55 +05:30
<parent>
<groupId>com.baeldung</groupId>
<artifactId>maven-simple</artifactId>
<version>1.0.0-SNAPSHOT</version>
2022-02-09 01:03:55 +05:30
</parent>
2022-02-09 01:03:55 +05:30
<modules>
<module>core</module>
<module>service</module>
<module>webapp</module>
</modules>
2022-03-13 14:48:44 +05:30
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring-core.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<properties>
<spring-core.version>5.3.16</spring-core.version>
</properties>
2022-05-08 16:36:25 +05:30
2022-03-13 14:48:44 +05:30
</project>