cortlepp commented on PR #859:
URL:
https://github.com/apache/axis-axis2-java-core/pull/859#issuecomment-2674709929
To further improve build integrity I also tried enabling a duplicate classes
check by including the following snippet in the main pom, this however made the
build fail in some ant stage with an obscure error which I didn't understand.
Leaving this here for posterity if I/someone else wants to investigate this
further.
```xml
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
<failBuild>true</failBuild>
<ignoreDirect>false</ignoreDirect>
</configuration>
<executions>
<execution>
<id>duplicate-dependency-check</id>
<phase>prepare-package</phase>
<goals>
<goal>analyze-dep-mgt</goal>
</goals>
</execution>
</executions>
</plugin>
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]