2021-09-01 04:22:43 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
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>
|
2023-10-16 09:42:13 +02:00
|
|
|
<artifactId>parent-pom-module3</artifactId>
|
2021-09-20 00:04:26 +05:30
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2021-09-01 04:22:43 +02:00
|
|
|
<parent>
|
2021-09-03 17:50:16 +02:00
|
|
|
<groupId>com.baeldung.maven-parent-pom-resolution</groupId>
|
2023-10-16 09:42:13 +02:00
|
|
|
<artifactId>maven-parent-pom-aggregator</artifactId>
|
2021-09-03 17:50:16 +02:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2021-09-01 04:22:43 +02:00
|
|
|
<!-- removing relativePath won't work even if project-a is the aggregator project -->
|
|
|
|
<!-- it only works in IntelliJ IDEA when project-a is registered as a Maven Project -->
|
|
|
|
<relativePath>../../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2021-11-09 16:27:03 +05:30
|
|
|
</project>
|