Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
maven-core-3.8.6.jar - Maven Core Module
maven-core-3.8.6.jar is the JAR file for Apache Maven 3.8.6 Core module. Apache Maven is a software project management and comprehension tool.
JAR File Size and Download Location:
File: 646022 06-06-2022 16:16 lib/maven-core-3.8.6.jar Download: Apache Maven Website
✍: FYIcenter.com
⏎ org/apache/maven/execution/MavenSession.java
package org.apache.maven.execution; /* * 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.io.File; import java.util.Arrays; import java.util.Date; import java.util.List; import java.util.Map; import java.util.Properties; import java.util.concurrent.ConcurrentHashMap; import org.apache.maven.artifact.repository.ArtifactRepository; import org.apache.maven.artifact.repository.RepositoryCache; import org.apache.maven.monitor.event.EventDispatcher; import org.apache.maven.plugin.descriptor.PluginDescriptor; import org.apache.maven.project.MavenProject; import org.apache.maven.project.ProjectBuildingRequest; import org.apache.maven.settings.Settings; import org.codehaus.plexus.PlexusContainer; import org.codehaus.plexus.component.repository.exception.ComponentLookupException; import org.eclipse.aether.RepositorySystemSession; /** * A Maven execution session. * * @author Jason van Zyl */ public class MavenSession implements Cloneable { private MavenExecutionRequest request; private MavenExecutionResult result; private RepositorySystemSession repositorySession; private Properties executionProperties; private MavenProject currentProject; /** * These projects have already been topologically sorted in the {@link org.apache.maven.Maven} component before * being passed into the session. This is also the potentially constrained set of projects by using --projects * on the command line. */ private List<MavenProject> projects; /** * The full set of projects before any potential constraining by --projects. Useful in the case where you want to * build a smaller set of projects but perform other operations in the context of your reactor. */ private List<MavenProject> allProjects; private MavenProject topLevelProject; private ProjectDependencyGraph projectDependencyGraph; private boolean parallel; private final Map<String, Map<String, Map<String, Object>>> pluginContextsByProjectAndPluginKey = new ConcurrentHashMap<>(); public void setProjects( List<MavenProject> projects ) { if ( !projects.isEmpty() ) { this.currentProject = projects.get( 0 ); this.topLevelProject = currentProject; for ( MavenProject project : projects ) { if ( project.isExecutionRoot() ) { topLevelProject = project; break; } } } else { this.currentProject = null; this.topLevelProject = null; } this.projects = projects; } public ArtifactRepository getLocalRepository() { return request.getLocalRepository(); } public List<String> getGoals() { return request.getGoals(); } /** * Gets the user properties to use for interpolation and profile activation. The user properties have been * configured directly by the user on his discretion, e.g. via the {@code -Dkey=value} parameter on the command * line. * * @return The user properties, never {@code null}. */ public Properties getUserProperties() { return request.getUserProperties(); } /** * Gets the system properties to use for interpolation and profile activation. The system properties are collected * from the runtime environment like {@link System#getProperties()} and environment variables. * * @return The system properties, never {@code null}. */ public Properties getSystemProperties() { return request.getSystemProperties(); } public Settings getSettings() { return settings; } public List<MavenProject> getProjects() { return projects; } public String getExecutionRootDirectory() { return request.getBaseDirectory(); } public MavenExecutionRequest getRequest() { return request; } public void setCurrentProject( MavenProject currentProject ) { this.currentProject = currentProject; } public MavenProject getCurrentProject() { return currentProject; } public ProjectBuildingRequest getProjectBuildingRequest() { return request.getProjectBuildingRequest().setRepositorySession( getRepositorySession() ); } public List<String> getPluginGroups() { return request.getPluginGroups(); } public boolean isOffline() { return request.isOffline(); } public MavenProject getTopLevelProject() { return topLevelProject; } public MavenExecutionResult getResult() { return result; } // Backward compat public Map<String, Object> getPluginContext( PluginDescriptor plugin, MavenProject project ) { String projectKey = project.getId(); Map<String, Map<String, Object>> pluginContextsByKey = pluginContextsByProjectAndPluginKey.get( projectKey ); if ( pluginContextsByKey == null ) { pluginContextsByKey = new ConcurrentHashMap<>(); pluginContextsByProjectAndPluginKey.put( projectKey, pluginContextsByKey ); } String pluginKey = plugin.getPluginLookupKey(); Map<String, Object> pluginContext = pluginContextsByKey.get( pluginKey ); if ( pluginContext == null ) { pluginContext = new ConcurrentHashMap<>(); pluginContextsByKey.put( pluginKey, pluginContext ); } return pluginContext; } public ProjectDependencyGraph getProjectDependencyGraph() { return projectDependencyGraph; } public void setProjectDependencyGraph( ProjectDependencyGraph projectDependencyGraph ) { this.projectDependencyGraph = projectDependencyGraph; } public String getReactorFailureBehavior() { return request.getReactorFailureBehavior(); } @Override public MavenSession clone() { try { return (MavenSession) super.clone(); } catch ( CloneNotSupportedException e ) { throw new RuntimeException( "Bug", e ); } } public Date getStartTime() { return request.getStartTime(); } public boolean isParallel() { return parallel; } public void setParallel( boolean parallel ) { this.parallel = parallel; } public RepositorySystemSession getRepositorySession() { return repositorySession; } private Map<String, MavenProject> projectMap; public void setProjectMap( Map<String, MavenProject> projectMap ) { this.projectMap = projectMap; } /** This is a provisional method and may be removed */ public List<MavenProject> getAllProjects() { return allProjects; } /** This is a provisional method and may be removed */ public void setAllProjects( List<MavenProject> allProjects ) { this.allProjects = allProjects; } /*if_not[MAVEN4]*/ // // Deprecated // private PlexusContainer container; private final Settings settings; @Deprecated /** @deprecated This appears to only be used in the ReactorReader and we can do any processing required there */ public Map<String, MavenProject> getProjectMap() { return projectMap; } @Deprecated public MavenSession( PlexusContainer container, RepositorySystemSession repositorySession, MavenExecutionRequest request, MavenExecutionResult result ) { this.container = container; this.request = request; this.result = result; this.settings = new SettingsAdapter( request ); this.repositorySession = repositorySession; } @Deprecated public MavenSession( PlexusContainer container, MavenExecutionRequest request, MavenExecutionResult result, MavenProject project ) { this( container, request, result, Arrays.asList( new MavenProject[]{project} ) ); } @Deprecated @SuppressWarnings( "checkstyle:parameternumber" ) public MavenSession( PlexusContainer container, Settings settings, ArtifactRepository localRepository, EventDispatcher eventDispatcher, ReactorManager unused, List<String> goals, String executionRootDir, Properties executionProperties, Date startTime ) { this( container, settings, localRepository, eventDispatcher, unused, goals, executionRootDir, executionProperties, null, startTime ); } @Deprecated @SuppressWarnings( "checkstyle:parameternumber" ) public MavenSession( PlexusContainer container, Settings settings, ArtifactRepository localRepository, EventDispatcher eventDispatcher, ReactorManager unused, List<String> goals, String executionRootDir, Properties executionProperties, Properties userProperties, Date startTime ) { this.container = container; this.settings = settings; this.executionProperties = executionProperties; this.request = new DefaultMavenExecutionRequest(); this.request.setUserProperties( userProperties ); this.request.setLocalRepository( localRepository ); this.request.setGoals( goals ); this.request.setBaseDirectory( ( executionRootDir != null ) ? new File( executionRootDir ) : null ); this.request.setStartTime( startTime ); } @Deprecated public MavenSession( PlexusContainer container, MavenExecutionRequest request, MavenExecutionResult result, List<MavenProject> projects ) { this.container = container; this.request = request; this.result = result; this.settings = new SettingsAdapter( request ); setProjects( projects ); } @Deprecated public List<MavenProject> getSortedProjects() { return getProjects(); } @Deprecated // // Used by Tycho and will break users and force them to upgrade to Maven 3.1 so we should really leave // this here, possibly indefinitely. // public RepositoryCache getRepositoryCache() { return null; } @Deprecated public EventDispatcher getEventDispatcher() { return null; } @Deprecated public boolean isUsingPOMsFromFilesystem() { return request.isProjectPresent(); } /** * @deprecated Use either {@link #getUserProperties()} or {@link #getSystemProperties()}. */ @Deprecated public Properties getExecutionProperties() { if ( executionProperties == null ) { executionProperties = new Properties(); executionProperties.putAll( request.getSystemProperties() ); executionProperties.putAll( request.getUserProperties() ); } return executionProperties; } @Deprecated public PlexusContainer getContainer() { return container; } @Deprecated public Object lookup( String role ) throws ComponentLookupException { return container.lookup( role ); } @Deprecated public Object lookup( String role, String roleHint ) throws ComponentLookupException { return container.lookup( role, roleHint ); } @Deprecated public List<Object> lookupList( String role ) throws ComponentLookupException { return container.lookupList( role ); } @Deprecated public Map<String, Object> lookupMap( String role ) throws ComponentLookupException { return container.lookupMap( role ); } /*end[MAVEN4]*/ }
⏎ org/apache/maven/execution/MavenSession.java
Or download all of them as a single archive file:
File name: maven-core-3.8.6-src.zip File size: 550169 bytes Release date: 2022-06-06 Download
⇒ maven-artifact-3.8.6.jar - Maven Artifact Module
⇐ apache-maven-3.8.6-bin.zip - Apache Maven Binary Package
2020-10-26, 110744👍, 0💬
Popular Posts:
Where to find answers to frequently asked questions on Downloading and Using JDK (Java Development K...
kernel.jar is a component in iText Java library to provide low-level functionalities. iText Java lib...
What Is poi-3.5.jar - Part 2? poi-3.5.jar is one of the JAR files for Apache POI 3.5, which provides...
What Is mail.jar of JavaMail 1.4.2? I got the JAR file from javamail-1.4.2.zip. mail.jar in javamail...
JDK 17 jdk.localedata.jmod is the JMOD file for JDK 17 Localedata module. JDK 17 Locale Data module ...