com.github.ferstl.maven.pomenforcers.AbstractPedanticDependencyOrderEnforcer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pedantic-pom-enforcers Show documentation
Show all versions of pedantic-pom-enforcers Show documentation
The Pedantic POM Enforcers consist of serveral Maven enforcer rules that help you keep your
project setup consistent and organized.
/*
* Copyright (c) 2012 - 2015 by Stefan Ferstl
*
* 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.github.ferstl.maven.pomenforcers;
import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.Set;
import org.apache.maven.model.Dependency;
import org.apache.maven.project.MavenProject;
import com.github.ferstl.maven.pomenforcers.model.DependencyElement;
import com.github.ferstl.maven.pomenforcers.model.DependencyModel;
import com.github.ferstl.maven.pomenforcers.model.functions.DependencyMatcher;
import com.github.ferstl.maven.pomenforcers.priority.CompoundPriorityOrdering;
import com.github.ferstl.maven.pomenforcers.util.CommaSeparatorUtils;
import com.github.ferstl.maven.pomenforcers.util.EnforcerRuleUtils;
import com.google.common.collect.BiMap;
import com.google.common.collect.Sets;
import static com.github.ferstl.maven.pomenforcers.model.DependencyElement.ARTIFACT_ID;
import static com.github.ferstl.maven.pomenforcers.model.DependencyElement.GROUP_ID;
import static com.github.ferstl.maven.pomenforcers.model.DependencyElement.SCOPE;
import static com.github.ferstl.maven.pomenforcers.model.DependencyElement.stringToDependencyElement;
abstract class AbstractPedanticDependencyOrderEnforcer extends AbstractPedanticEnforcer {
private final CompoundPriorityOrdering artifactOrdering;
public AbstractPedanticDependencyOrderEnforcer() {
this.artifactOrdering = CompoundPriorityOrdering.orderBy(SCOPE, GROUP_ID, ARTIFACT_ID);
}
/**
* Comma-separated list of dependency elements that defines the ordering.
* @param dependencyElements Comma-separated list of dependency elements that defines the ordering.
* @configParam
* @default scope,groupId,artifactId
* @since 1.0.0
*/
public void setOrderBy(String dependencyElements) {
Set orderBy = new LinkedHashSet<>();
CommaSeparatorUtils.splitAndAddToCollection(dependencyElements, orderBy, stringToDependencyElement());
this.artifactOrdering.redefineOrderBy(orderBy);
}
/**
* Comma-separated list of group IDs that should be listed first in the
* dependencies declaration. All group IDs that start with
* any of the prioritized group IDs in the given list, are required to be
* located first in the dependencies section.
*
* @param groupIds Comma separated list of group IDs.
* @configParam
* @default n/a
* @since 1.0.0
*/
public void setGroupIdPriorities(String groupIds) {
LinkedHashSet groupIdPriorities = Sets.newLinkedHashSet();
CommaSeparatorUtils.splitAndAddToCollection(groupIds, groupIdPriorities);
this.artifactOrdering.setPriorities(DependencyElement.GROUP_ID, groupIdPriorities);
}
/**
* Comma-separated list of artifact IDs that should be listed first in the
* dependencies declaration. All artifact IDs that start with
* any of the prioritized IDs in the given list, are required to be located
* first in the dependencies section.
*
* @param artifactIds Comma separated list of artifact IDs.
* @configParam
* @default n/a
* @since 1.0.0
*/
public void setArtifactIdPriorities(String artifactIds) {
LinkedHashSet artifactIdPriorities = Sets.newLinkedHashSet();
CommaSeparatorUtils.splitAndAddToCollection(artifactIds, artifactIdPriorities);
this.artifactOrdering.setPriorities(DependencyElement.ARTIFACT_ID, artifactIdPriorities);
}
/**
* Comma-separated list of scopes that should be listed first in the
* dependencies declaration. All scopes that equal any of the scopes in the
* given list, are required to be located first in the dependencies section.
*
* @param scopes Comma separated list of scopes.
* @configParam
* @default n/a
* @since 1.0.0
*/
public void setScopePriorities(String scopes) {
LinkedHashSet scopePriorities = Sets.newLinkedHashSet();
CommaSeparatorUtils.splitAndAddToCollection(scopes, scopePriorities);
this.artifactOrdering.setPriorities(DependencyElement.SCOPE, scopePriorities);
}
protected abstract Collection getDeclaredDependencies();
protected abstract Collection getMavenDependencies(MavenProject mavenProject);
protected abstract void reportError(
ErrorReport report, Collection resolvedDependencies, Collection sortedDependencies);
@Override
protected final void doEnforce(ErrorReport report) {
MavenProject mavenProject = EnforcerRuleUtils.getMavenProject(getHelper());
DependencyMatcher dependencyMatcher = new DependencyMatcher(getHelper());
BiMap matchedDependencies =
dependencyMatcher.match(getMavenDependencies(mavenProject), getDeclaredDependencies());
Set resolvedDependencies = matchedDependencies.keySet();
if (!this.artifactOrdering.isOrdered(resolvedDependencies)) {
reportError(report, resolvedDependencies, this.artifactOrdering.immutableSortedCopy(resolvedDependencies));
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy