Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
Other Resources:
maven-core-3.5.4.jar - Maven Core Module
maven-core-3.5.4.jar is the JAR file for Apache Maven 3.5.4 Core module.
Apache Maven is a software project management and comprehension tool.
JAR File Size and Download Location:
File: 2018-06-17 19:33 630101 lib\maven-core-3.5.4.jar Download: Apache Maven Website
✍: FYIcenter.com
⏎ org/apache/maven/graph/DefaultProjectDependencyGraph.java
package org.apache.maven.graph; /* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.HashSet; import java.util.List; import java.util.Set; import org.apache.commons.lang3.Validate; import org.apache.maven.execution.ProjectDependencyGraph; import org.apache.maven.project.DuplicateProjectException; import org.apache.maven.project.MavenProject; import org.apache.maven.project.ProjectSorter; import org.codehaus.plexus.util.dag.CycleDetectedException; /** * Describes the inter-dependencies between projects in the reactor. * * @author Benjamin Bentmann */ public class DefaultProjectDependencyGraph implements ProjectDependencyGraph { private ProjectSorter sorter; private List<MavenProject> allProjects; /** * Creates a new project dependency graph based on the specified projects. * * @param projects The projects to create the dependency graph with * @throws DuplicateProjectException * @throws CycleDetectedException */ public DefaultProjectDependencyGraph( Collection<MavenProject> projects ) throws CycleDetectedException, DuplicateProjectException { super(); this.allProjects = Collections.unmodifiableList( new ArrayList<>( projects ) ); this.sorter = new ProjectSorter( projects ); } /** * Creates a new project dependency graph based on the specified projects. * * @param allProjects All collected projects. * @param projects The projects to create the dependency graph with. * * @throws DuplicateProjectException * @throws CycleDetectedException * @since 3.5.0 */ public DefaultProjectDependencyGraph( final List<MavenProject> allProjects, final Collection<MavenProject> projects ) throws CycleDetectedException, DuplicateProjectException { super(); this.allProjects = Collections.unmodifiableList( new ArrayList<>( allProjects ) ); this.sorter = new ProjectSorter( projects ); } /** * @since 3.5.0 */ public List<MavenProject> getAllProjects() { return this.allProjects; } public List<MavenProject> getSortedProjects() { return new ArrayList<>( sorter.getSortedProjects() ); } public List<MavenProject> getDownstreamProjects( MavenProject project, boolean transitive ) { Validate.notNull( project, "project cannot be null" ); Set<String> projectIds = new HashSet<>(); getDownstreamProjects( ProjectSorter.getId( project ), projectIds, transitive ); return getSortedProjects( projectIds ); } private void getDownstreamProjects( String projectId, Set<String> projectIds, boolean transitive ) { for ( String id : sorter.getDependents( projectId ) ) { if ( projectIds.add( id ) && transitive ) { getDownstreamProjects( id, projectIds, transitive ); } } } public List<MavenProject> getUpstreamProjects( MavenProject project, boolean transitive ) { Validate.notNull( project, "project cannot be null" ); Set<String> projectIds = new HashSet<>(); getUpstreamProjects( ProjectSorter.getId( project ), projectIds, transitive ); return getSortedProjects( projectIds ); } private void getUpstreamProjects( String projectId, Collection<String> projectIds, boolean transitive ) { for ( String id : sorter.getDependencies( projectId ) ) { if ( projectIds.add( id ) && transitive ) { getUpstreamProjects( id, projectIds, transitive ); } } } private List<MavenProject> getSortedProjects( Set<String> projectIds ) { List<MavenProject> result = new ArrayList<>( projectIds.size() ); for ( MavenProject mavenProject : sorter.getSortedProjects() ) { if ( projectIds.contains( ProjectSorter.getId( mavenProject ) ) ) { result.add( mavenProject ); } } return result; } @Override public String toString() { return sorter.getSortedProjects().toString(); } }
⏎ org/apache/maven/graph/DefaultProjectDependencyGraph.java
Â
⇒ maven-compat-3.5.4.jar - Maven Compact Module
⇠apache-maven-3.5.4-bin.zip - Apache Maven Binary Package
⇑ Downloading and Reviewing Maven JAR Files
⇑⇑ FAQ for Apache Maven
2020-10-26, 67411👍, 0💬
Popular Posts:
JDK 11 jdk.xml.dom.jmod is the JMOD file for JDK 11 XML DOM module. JDK 11 XML DOM module compiled c...
JAX-RPC is an API for building Web services and clients that used remote procedure calls (RPC) and X...
How to run "jar" command from JDK tools.jar file? "jar" is the JAR (Java Archive) file management co...
JasperReports, the world's most popular open source business intelligence and reporting engine and J...
What Is javax.websocket-api-1.1. jar?javax.websocket-api-1.1. jaris the JAR file for Java API for We...