diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2017-08-14 13:40:15 -0400 |
---|---|---|
committer | Pamela Dragosh <pdragosh@research.att.com> | 2017-08-14 13:40:22 -0400 |
commit | c4cf74848bd9d0651322701fb7d4abe529c69ce9 (patch) | |
tree | 5ee51bf90f020c775c5253acf412f70c0c783f08 | |
parent | 8e9b3d288bc5b51f691183715d5862489f09d95d (diff) |
Remove eclipse checkstyle warnings
Add this should remove Eclipse warnings:
Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-checkstyle-plugin:2.17:check (execution: check-style, phase: process-sources)
Issue-Id: POLICY-166
Change-Id: I6e83f05e4d034475d04d85e9b9fbf5f11a1969c7
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
-rw-r--r-- | pom.xml | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -98,6 +98,34 @@ </dependencies> </plugin> </plugins> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.eclipse.m2e</groupId> + <artifactId>lifecycle-mapping</artifactId> + <version>1.0.0</version> + <configuration> + <lifecycleMappingMetadata> + <pluginExecutions> + <pluginExecution> + <pluginExecutionFilter> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <versionRange>2.17,)</versionRange> + <goals> + <goal>check</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore /> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> <reporting> <plugins> |