Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for REACTOR (0.07 sec)

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

                Map<String, Artifact> map = new HashMap<>();
                for (Artifact artifact : resolvedArtifacts) {
                    /**
                     * MNG-6300: resolvedArtifacts can be cache result; this ensures reactor files are always up-to-date
                     * During lifecycle the Artifact.getFile() can change from target/classes to the actual jar.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategy.java

            hasChanges |= trimParentElementLimited(context, root, parentElement);
    
            // Only remove parent elements if the parent is in the same reactor (not external)
            if (isParentInReactor(parentElement, pomMap, context)) {
                // Remove parent groupId if child has no explicit groupId
                if (childGroupId == null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 27.6K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/graph/DefaultProjectDependencyGraph.java

    import org.apache.maven.project.DuplicateProjectException;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.ProjectSorter;
    
    /**
     * Describes the interdependencies between projects in the reactor.
     *
     */
    public class DefaultProjectDependencyGraph implements ProjectDependencyGraph {
    
        private final ProjectSorter sorter;
    
        private final List<MavenProject> allProjects;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/event/ExecutionEventLogger.java

        public void sessionStarted(ExecutionEvent event) {
            if (logger.isInfoEnabled() && event.getSession().getProjects().size() > 1) {
                init();
                infoLine('-');
    
                infoMain("Reactor Build Order:");
    
                logger.info("");
    
                final List<MavenProject> projects = event.getSession().getProjects();
                for (MavenProject project : projects) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Dec 13 15:40:45 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java

                    + artifact.getScope() + " wins)");
    
            // TODO better way than static? this might hide messages in a reactor
            if (!ignoredArtifacts.contains(artifact)) {
                logger.warn("\n\tArtifact " + artifact + " retains local artifactScope '" + artifact.getScope()
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDebugLogger.java

            logger.info(s);
        }
    
        public void debugReactorPlan(ProjectBuildList projectBuilds) {
            if (!logger.isDebugEnabled()) {
                return;
            }
    
            logger.debug("=== REACTOR BUILD PLAN ================================================");
    
            for (Iterator<ProjectSegment> it = projectBuilds.iterator(); it.hasNext(); ) {
                ProjectSegment projectBuild = it.next();
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. compat/maven-model-builder/src/site/apt/index.apt

       ** Build up a raw model by re-reading the file and enriching it based on information available in the reactor. Some features:
    
          *** Resolve version of versionless parents based on relativePath (including ci-friendly versions)
    
          *** Resolve version of versionless dependencies that are part of the reactor
    
       []
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 03 08:42:52 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  8. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

         *   where multiple modules in the reactor have the same artifactId.
         * <p>
         * {@code -rf :artifactId} will pick up the first module which matches, but when multiple modules in the reactor
         *   have the same artifactId, effective failed module might be later in build reactor.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 11 17:20:46 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

         */
        private String lifecyclePhase;
    
        /**
         * The executions to fork before this execution, indexed by the groupId:artifactId:version of the project on which
         * the forked execution are to be run and in reactor build order.
         */
        private Map<String, List<MojoExecution>> forkedExecutions = new LinkedHashMap<>();
    
        public MojoExecution(Plugin plugin, String goal, String executionId) {
            this.plugin = plugin;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

                    }
                }
            }
            return null;
        }
    
        private boolean isSafelyCacheable(RepositorySystemSession session, Artifact artifact) {
            /*
             * The workspace/reactor is in flux so we better not assume definitive information for any of its
             * artifacts/projects.
             */
    
            WorkspaceReader workspace = session.getWorkspaceReader();
            if (workspace == null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 08:42:00 UTC 2025
    - 20.2K bytes
    - Viewed (0)
Back to top