![JAR search and dependency download from the Maven repository](/logo.png)
com.ning.maven.plugins.dependencyversionscheck.strategy.DefaultStrategyProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-dependency-versions-check-plugin Show documentation
Show all versions of maven-dependency-versions-check-plugin Show documentation
The maven-dependency-versions-check-plugin is a Maven plugin
that verifies that the resolved versions of dependencies are at
least the versions specified by the dependencies (or their
dependencies etc.) if not higher.
More specifically, it will check that
* The resolved version of every dependency declared explicitly
in the current POM is the same or a newer one than what was
stated. If the resolved version has a higher major version
number than the declared version, then the plugin will issue
a warning if configured to do so.
Note that enforced declared versions are ignored by the plugin.
* For every explicitly declared dependency in the current POM, all
its dependency versions are met. I.e. the resolved versions for
all dependencies in that dependency's POM are the same or higher
than the one stated in that dependency's POM. This is basically
the same check as the one above, but using the dependency's POM!
Also, if the current POM has exclusions specified for the
dependency, then these transitive dependencies are ignored
when checking this particular dependency.
/*
* Copyright (C) 2011 Henning Schmiedehausen
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package com.ning.maven.plugins.dependencyversionscheck.strategy;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import org.apache.commons.collections.CollectionUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Default implementation for {@link com.ning.maven.plugins.dependencyversionscheck.strategy.StrategyProvider}.
*
* @plexus.component role="com.ning.maven.plugins.dependencyversionscheck.strategy.StrategyProvider"
*/
public class DefaultStrategyProvider implements StrategyProvider
{
private static final Logger LOG = LoggerFactory.getLogger(DefaultStrategyProvider.class);
/**
* @plexus.requirement role="com.ning.maven.plugins.dependencyversionscheck.strategy.Strategy"
*/
protected List resolverDefinitions;
private Map resolvers = null;
public Map getStrategies()
{
if (resolvers == null) {
Map newResolvers = new HashMap();
if (!CollectionUtils.isEmpty(resolverDefinitions)) {
for (Iterator it = resolverDefinitions.iterator(); it.hasNext(); ) {
final Strategy resolver = (Strategy) it.next();
final String name = resolver.getName().toLowerCase(Locale.ENGLISH);
LOG.debug("Adding {} as resolver.", name);
newResolvers.put(name, resolver);
}
}
resolvers = newResolvers;
}
return resolvers;
}
public Strategy forName(final String name)
{
if (name == null) {
return null;
}
final Map strategies = getStrategies();
return (Strategy) strategies.get(name.toLowerCase(Locale.ENGLISH));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy