Support getting groupId from <parent> element if no groupId is found in pom.xml
kevin-lee opened this issue · 0 comments
kevin-lee commented
Task
Summary
Support getting groupId
from <parent>
element if no groupId
is found in pom.xml
Project Details
Version: 1.1.1
Description
e.g.)
<?xml version="1.0" encoding="UTF-8"?>
<project>
<parent>
<groupId>io.kevinlee</groupId>
<artifactId>parent-project</artifactId>
<version>1.2.3</version>
</parent>
<artifactId>some-app</artifactId>
<version>0.1.0</version>
...
</project>
should take the groupId
io.kevinlee
from <parent>
and use it for ThisBuild / organization
because there's no <groupId>
in the pom.xml
.