Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You must add the following to the pluginManagement section if your main project pom to disable the enforcer plugin:

Code Block
<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-enforcer-plugin</artifactId>
  <version>1.0-alpha-3</version>
  <configuration>
    <skip>true</skip>
  </configuration>
</plugin>

...