hohwille commented on issue #10209:
URL: https://github.com/apache/maven/issues/10209#issuecomment-4381279858
Yes, confirmed.
Module A:
```
<plugin>
<groupId>com.github.kongchen</groupId>
<artifactId>swagger-maven-plugin</artifactId>
<executions>
<execution>
<id>default</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
```
Module B:
```
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<!-- 2 internal dependencies, seems only on profile to disable them
somehow -->
</dependencies>
</profile>
```
Module C (main app artifact):
```
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
```
Since nothing else is happening in the profile of C, this seems rather
pointless.
I wanted to create a reproducer but found more fundamental bugs in maven 4.
Will create a new issue with example project.
--
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]