Closed chrisb2 closed 1 year ago
I worked this out. I was thinking that <excludes>
ment excluded from the check, but it means excluded from the dependency set, so what is actually required is <includes>
:
<configuration>
<dependencySets>
<dependencySet>
<includes>
<include>xxx.yyyy:*</include>
</includes>
<version>ignore</version>
<integrity>ignore</integrity>
</dependencySet>
</dependencySets>
</configuration>
I am trying to exclude an internal dependency for the check. I have the following configuration in my pom, however
mvn se.vandmo:dependency-lock-maven-plugin:check
fails with "wrong integrity and version". The internal dependency is in the lock file. Have I got my configuration wrong?