Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for DependencyContext (0.05 seconds)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DependencyContext.java

     *
     * @since 3.0
     */
    // TODO From a concurrency perspective, this class is not good. The combination of mutable/immutable state is not nice
    public class DependencyContext {
    
        private final MavenProject project;
    
        private final Collection<String> scopesToCollectForCurrentProject;
    
        private final Collection<String> scopesToResolveForCurrentProject;
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 3.6K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

                throws LifecycleExecutionException {
    
            MavenProject project = dependencyContext.getProject();
            boolean aggregating = mojoDescriptor.isAggregator();
    
            if (dependencyContext.isResolutionRequiredForCurrentProject()) {
                Collection<String> scopesToCollect = dependencyContext.getScopesToCollectForCurrentProject();
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Jun 12 14:55:55 GMT 2025
    - 21K bytes
    - Click Count (0)
Back to Top