Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for what (0.73 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

         * Adapt a {@link MavenExecutionRequest} to a {@link Settings} object for use in the Maven core.
         * We want to make sure that what is ask for in the execution request overrides what is in the settings.
         * The CLI feeds into an execution request so if a particular value is present in the execution request
         * then we will take that over the value coming from the user settings.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/project/interpolation/StringSearchModelInterpolator.java

                                                    }
                                                } else {
                                                    // add the null back in...not sure what else to do...
                                                    c.add(value);
                                                }
                                            }
                                        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                return session.getProjects().stream() // sorted all
                        .filter(projectAndSubmodules::contains)
                        .collect(Collectors.toList()); // sorted and filtered to what we need
            } else {
                return Collections.singletonList(project);
            }
        }
    
        public void resolveProjectDependencies(
                MavenProject project,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

                }
    
                Key that = (Key) obj;
                return artifactId.equals(that.artifactId)
                        && groupId.equals(that.groupId)
                        && classifier.equals(that.classifier)
                        && extension.equals(that.extension)
                        && version.equals(that.version)
                        && context.equals(that.context)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    - plugin execution failure due to something that is know to possibly go wrong (like compilation failure)
    - plugin execution error due to something that is not expected to go wrong (the compiler executable missing)
    - asking to use a plugin for which you do not have a version defined - tools to easily select versions
    - goal not found in a plugin (probably could list the ones that are)
    
     */
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

                return false;
            }
            XmlNodeImpl that = (XmlNodeImpl) o;
            return Objects.equals(this.name, that.name)
                    && Objects.equals(this.value, that.value)
                    && Objects.equals(this.attributes, that.attributes)
                    && Objects.equals(this.children, that.children);
        }
    
        @Override
        public int hashCode() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

         * Creates and returns a new <code>VersionRange</code> that is a restriction of this
         * version range and the specified version range.
         * <p>
         * Note: Precedence is given to the recommended version from this version range over the
         * recommended version from the specified version range.
         * </p>
         *
         * @param restriction the <code>VersionRange</code> that will be used to restrict this version
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

         * to use a specific version. We need to make sure the version that they specify takes precedence.
         */
        @Test
        void testMojoWhereInternallyStatedDependencyIsOverriddenByProject() throws Exception {}
    
        /**
         * The case where you have a plugin in the current build that you want to be used on projects in
         * the current build.
         */
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

     * This enumeration is closely related to the {@link JavaFileManager.Location} enumerations.
     * A difference is that the latter enumerates input and output files, while {@code JavaPathType}
     * enumerates only input dependencies. Another difference is that {@code JavaPathType} contains
     * some enumeration values used only at runtime and therefore not available in {@code javax.tool},
     * such as agent paths.
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         *       {@code "META-INF/versions/{n}/"} subdirectory, builds a singleton map with
         *       the module name declared in that descriptor.</li>
         *   <li>Otherwise if an {@code "Automatic-Module-Name"} attribute is declared in the
         *       {@code META-INF/MANIFEST.MF} file, builds a singleton map with the value of that attribute.</li>
         * </ul>
         *
         * Otherwise builds an empty map.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top