Share specific PMD rulesets across multi module maven project
问题 I'm trying to share the same pmd configuration across all my submodules. I'm looking for the best way to achieve that I thought that I could place it in the parent project, like I did it for checkstyle plugin Parent pom.xml <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.9.1</version> <configuration> <configLocation>/src/main/config/checkstyle.xml</configLocation> </configuration> </plugin> <plugin> <groupId