Get rid of some errors and warnings in the plugins user-authenticators ldap sources
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/d17a8f8b Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/d17a8f8b Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/d17a8f8b Branch: refs/heads/rbac Commit: d17a8f8b1181fa83fcd232905e623dad8e37cfda Parents: a3fae88 Author: Hugo Trippaers <[email protected]> Authored: Mon Nov 4 17:21:10 2013 +0100 Committer: Hugo Trippaers <[email protected]> Committed: Mon Nov 4 20:01:13 2013 +0100 ---------------------------------------------------------------------- plugins/user-authenticators/ldap/pom.xml | 37 +++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/d17a8f8b/plugins/user-authenticators/ldap/pom.xml ---------------------------------------------------------------------- diff --git a/plugins/user-authenticators/ldap/pom.xml b/plugins/user-authenticators/ldap/pom.xml index 1f9dea0..34121e4 100644 --- a/plugins/user-authenticators/ldap/pom.xml +++ b/plugins/user-authenticators/ldap/pom.xml @@ -90,6 +90,40 @@ </plugin> </plugins> + <pluginManagement> + <plugins> + <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> + <plugin> + <groupId>org.eclipse.m2e</groupId> + <artifactId>lifecycle-mapping</artifactId> + <version>1.0.0</version> + <configuration> + <lifecycleMappingMetadata> + <pluginExecutions> + <pluginExecution> + <pluginExecutionFilter> + <groupId> + org.codehaus.gmaven + </groupId> + <artifactId> + gmaven-plugin + </artifactId> + <versionRange>[1.3,)</versionRange> + <goals> + <goal>compile</goal> + <goal>testCompile</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> <dependencies> @@ -104,7 +138,6 @@ <dependency> <!-- enables mocking of classes (in addition to interfaces) --> <groupId>cglib</groupId> <artifactId>cglib-nodep</artifactId> - <version>2.2</version> - </dependency> + </dependency> </dependencies> </project>
