root/child-a/pom.xml
| No Format |
|---|
<?xml version="1.0" encoding="UTF-8"?> <project> <modelVersion>4.0.0</modelVersion> <parent> <groupId>net.example</groupId> <artifactId>root</artifactId> </parent> <artifactId>child-a</artifactId> <version>1.1.0</version> <packaging>pom</packaging> <name>ChildA</name> <modules> <module>child-a-1</module> <module>child-a-2</module> </modules> </project> |
root/child-a/target/pom-transformed.xml
| No Format |
|---|
<?xml version="1.0" encoding="UTF-8"?> <project> <modelVersion>4.0.0</modelVersion> <parent> <groupId>net.example</groupId> <artifactId>root</artifactId> <version>1.0.0</version> </parent> <artifactId>child-a</artifactId> <version>1.1.0</version> <packaging>pom</packaging> <name>ChildA</name> <modules> <module>child-a-1</module> <module>child-a-2</module> </modules> </project> |
