slawekjaranowski commented on PR #212:
URL: https://github.com/apache/maven-ejb-plugin/pull/212#issuecomment-4338514000
Maybe a bug in 4.x?
we have in root pom.xml:
```xml
<parent>
<groupId>org.apache.maven.its.ejb</groupId>
<artifactId>maven-ejb-it-setup</artifactId>
<version>1.0</version>
</parent>
<groupId>org.apache.maven.its.ejb.reactor</groupId>
<artifactId>aggregator</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
...
<modules>
<module>sub</module>
</modules>
```
and in sub/pom.xml - the same parent as in root
```xml
<parent>
<groupId>org.apache.maven.its.ejb</groupId>
<artifactId>maven-ejb-it-setup</artifactId>
<version>1.0</version>
</parent>
```
when change parent in sub/pom.xml to:
```xml
<parent>
<groupId>org.apache.maven.its.ejb.reactor</groupId>
<artifactId>aggregator</artifactId>
<version>1.0</version>
</parent>
```
build will pass
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]