maven relativePath

maven supports parent-child relationship, where the configuration of the parent project is inherited by the child project. This relationship is specified using the <parent> element as below: <parent> <groupId>com.mygroup</groupId> <artifactId>artifactId</artifactId> <version>1.1</version> </parent> The pom file of the parent project will… Read More