Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for maps (0.2 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/DefaultConflictResolverFactory.java

    import org.codehaus.plexus.personality.plexus.lifecycle.phase.Contextualizable;
    
    /**
     * A conflict resolver factory that obtains instances from a plexus container.
     *
     * TODO you don't need the container in here with the active maps (jvz).
     * @since 3.0
     */
    @Named
    @Singleton
    @Deprecated
    public class DefaultConflictResolverFactory implements ConflictResolverFactory, Contextualizable {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  2. maven-core/plugin-manager.txt

    to know the URI that is to be used with its given parameters. That URI in turn must map internally to a method in a given component which belongs to a plugin. This mapping should actually be more generalized and it shouldn’t matter internally whether this maps to the core application or extension of the application in the form of plugins.
    
    In the short term we are working with the model where the URI maps to a resource, and the resource itself is a Plexus component which can itself have...
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

            }
    
            return pluginManager.getMojoDescriptor(
                    plugin, goal, project.getRemotePluginRepositories(), session.getRepositorySession());
        }
    
        // TODO take repo mans into account as one may be aggregating prefixes of many
        // TODO collect at the root of the repository, read the one at the root, and fetch remote if something is missing
        // or the user forces the issue
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileInjector.java

     *
     */
    @Named
    @Singleton
    public class DefaultProfileInjector implements ProfileInjector {
    
        private static final Map<Model, Map<List<Profile>, Model>> CACHE = Collections.synchronizedMap(new WeakHashMap<>());
    
        // In order for the weak hash map to work correctly, we must not hold any reference to
        // the model used as the key.  So we use a dummy model as a placeholder to indicate that
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java

            this.sortedProjects = sortedProjectLabels.stream()
                    .map(id -> projectMap.get(id))
                    .collect(Collectors.collectingAndThen(Collectors.toList(), Collections::unmodifiableList));
        }
    
        @SuppressWarnings("checkstyle:parameternumber")
        private void addEdge(
                Map<String, MavenProject> projectMap,
                Map<String, Map<String, Vertex>> vertexMap,
                MavenProject project,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 06:02:04 GMT 2023
    - 10.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchainManager.java

        final Map<String, ToolchainFactory> factories;
    
        @Inject
        public DefaultToolchainManager(Map<String, ToolchainFactory> factories) {
            this.factories = factories;
            this.logger = LoggerFactory.getLogger(DefaultToolchainManager.class);
        }
    
        /**
         * Ctor needed for UT.
         */
        DefaultToolchainManager(Map<String, ToolchainFactory> factories, Logger logger) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/ReactorManager.java

        private List<String> blackList = new ArrayList<>();
    
        private Map<String, BuildFailure> buildFailuresByProject = new HashMap<>();
    
        private Map<String, Map<String, Map>> pluginContextsByProjectAndPluginKey = new HashMap<>();
    
        private String failureBehavior = FAIL_FAST;
    
        private final ProjectSorter sorter;
    
        private Map<String, BuildSuccess> buildSuccessesByProject = new HashMap<>();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 06:02:04 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java

    import static org.apache.maven.internal.impl.Utils.map;
    import static org.apache.maven.internal.impl.Utils.nonNull;
    
    public class DefaultSession extends AbstractSession implements InternalMavenSession {
    
        private final MavenSession mavenSession;
        private final MavenRepositorySystem mavenRepositorySystem;
        private final RuntimeInformation runtimeInformation;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 12:55:57 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

            }
    
            @Override
            public Map<String, String> getUserProperties() {
                return Map.of();
            }
    
            @Override
            public Map<String, String> getSystemProperties() {
                return systemProperties;
            }
    
            @Override
            public Map<String, String> getEffectiveProperties(Project project) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 17.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java

        private List<String> phases;
    
        private Map<String, LifecyclePhase> defaultPhases;
    
        private org.apache.maven.api.Lifecycle lifecycle;
    
        public String getId() {
            return id;
        }
    
        public List<String> getPhases() {
            return phases;
        }
    
        static Map<String, LifecyclePhase> getDefaultPhases(org.apache.maven.api.Lifecycle lifecycle) {
            Map<String, List<String>> goals = new HashMap<>();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.3K bytes
    - Viewed (0)
Back to top