Require Managed Deps
This rule checks that the dependencies are managed.
The following parameters are supported by this rule:
- checkProfiles - Should the active profiles be checked.
- regexIgnored - List of regex to exclude groupId and artifactId, separated by comma or pipe
Sample Plugin Configuration:
<project>
[...]
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.6.2</version> <!-- find the latest version at http://maven.apache.org/plugins/maven-enforcer-plugin/ -->
<executions>
<execution>
<id>require-managed-deps</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireManagedDeps>
<checkProfiles>false</checkProfiles>
<regexIgnored>junit</regexIgnored>
</requireManagedDeps>
</rules>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>extra-enforcer-rules</artifactId>
<version>1.12.0</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
[...]
</project>Trademarks
Apache, Apache Maven, Maven and the Apache feather logo are trademarks of The Apache Software Foundation.


