com.github.ferstl.depgraph.DependencyGraphByGroupIdMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of depgraph-maven-plugin Show documentation
Show all versions of depgraph-maven-plugin Show documentation
This Maven plugin generates dependency graphs on single modules or in an aggregated form
on multi-module projects. The graphs are represented by .dot files. In case that Graphviz
is installed on the machine where this plugin is run, the .dot file can be directly converted
into all supported image files.
/*
* Copyright (c) 2014 - 2017 the original author or authors.
*
* 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.depgraph;
import java.util.EnumSet;
import java.util.Set;
import org.apache.maven.artifact.resolver.filter.ArtifactFilter;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.ResolutionScope;
import com.github.ferstl.depgraph.dependency.DependencyNode;
import com.github.ferstl.depgraph.dependency.DependencyNodeIdRenderer;
import com.github.ferstl.depgraph.dependency.GraphFactory;
import com.github.ferstl.depgraph.dependency.GraphStyleConfigurer;
import com.github.ferstl.depgraph.dependency.MavenGraphAdapter;
import com.github.ferstl.depgraph.dependency.SimpleGraphFactory;
import com.github.ferstl.depgraph.dependency.dot.style.resource.BuiltInStyleResource;
import com.github.ferstl.depgraph.graph.GraphBuilder;
import static com.github.ferstl.depgraph.dependency.NodeResolution.INCLUDED;
/**
* Creates a graph containing the group IDs of all dependencies.
*/
@Mojo(
name = "by-groupid",
defaultPhase = LifecyclePhase.NONE,
requiresDependencyCollection = ResolutionScope.TEST,
threadSafe = true)
public class DependencyGraphByGroupIdMojo extends AbstractGraphMojo {
@Override
protected GraphFactory createGraphFactory(ArtifactFilter globalFilter, ArtifactFilter transitiveIncludeExcludeFilter, ArtifactFilter targetFilter, GraphStyleConfigurer graphStyleConfigurer) {
GraphBuilder graphBuilder = graphStyleConfigurer
.showGroupIds(true)
.showArtifactIds(false)
.showTypes(false)
.showClassifiers(false)
.showVersionsOnNodes(false)
.showVersionsOnEdges(false)
.showOptional(false)
.configure(GraphBuilder.create(DependencyNodeIdRenderer.groupId().withScope(true)))
.omitSelfReferences();
MavenGraphAdapter adapter = new MavenGraphAdapter(this.dependenciesResolver, transitiveIncludeExcludeFilter, targetFilter, EnumSet.of(INCLUDED));
return new SimpleGraphFactory(adapter, globalFilter, graphBuilder);
}
@Override
protected Set getAdditionalStyleResources() {
Set resources = super.getAdditionalStyleResources();
resources.add(BuiltInStyleResource.GROUP_ID_ONLY_STYLE);
return resources;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy