Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Haddad (0.44 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                    addToClasspath = false;
                }
                /*
                 * If the test output directory provides some modules of its own, add them.
                 * Except for this unusual case, tests should never be added to the module-path.
                 */
                for (Map.Entry<Path, String> entry : testModules.getModuleNames().entrySet()) {
                    if (!outputModules.containsModule(entry.getValue())) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

            ArtifactResolutionResult res = collect(createSet(new Object[] {a.artifact, b.artifact}), filter);
            Artifact artifact = getArtifact("d", res.getArtifacts());
            assertNotNull(artifact, "MNG-1895 Dependency was not added to resolution");
            assertEquals(expectedScope, artifact.getScope(), "Check artifactScope");
            assertEquals(expectedVersion, artifact.getVersion(), "Check version");
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                        "The plugin " + pluginDescriptor.getId() + " has unmet prerequisites: " + messages,
                        prerequisiteExceptions.get(0));
                // the first exception is added as cause, all other ones as suppressed exceptions
                prerequisiteExceptions.stream().skip(1).forEach(pie::addSuppressed);
                throw pie;
            }
        }
    
        @Override
        @Deprecated
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  4. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

             ii) additions to the Program;
    
    where such changes and/or additions to the Program originate from and are
    distributed by that particular Contributor. A Contribution 'originates' from
    a Contributor if it was added to the Program by such Contributor itself or
    anyone acting on such Contributor's behalf. Contributions do not include additions
    to the Program which: (i) are separate modules of software distributed in
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Sep 17 05:50:12 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  5. api/maven-api-plugin/src/main/mdo/plugin.mdo

                Defines a default phase to bind a Mojo execution to if the user does not explicitly set a phase in the POM.
                &lt;p>&lt;b>Note:&lt;/b> This will not automagically make a Mojo run when the plugin declaration is added
                to the POM. It merely enables the user to omit the {@code &lt;phase&gt;} element from the
                surrounding {@code &lt;execution&gt;} element.&lt;/p>
              </description>
            </field>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                                        manageArtifact(child, managedVersions, listeners);
    
                                        // Also, we need to ensure that any exclusions it presents are
                                        // added to the artifact before we retrieve the metadata
                                        // for the artifact; otherwise we may end up with unwanted
                                        // dependencies.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 36.7K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/ProjectSorterTest.java

            projects = new ProjectSorter(projects).getSortedProjects();
    
            assertEquals(parentProject, projects.get(0));
    
            // the order of these two is non-deterministic, based on when they're added to the reactor.
            assertThat(projects, hasItem(pluginProject));
            assertThat(projects, hasItem(pluginLevelDepProject));
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java

                            false);
                }
    
                Parent parent = project.getModel().getDelegate().getParent();
    
                if (parent != null) {
                    // Parent is added as an edge, but must not cause a cycle - so we remove any other edges it has
                    // in conflict
                    addEdge(
                            projectMap,
                            vertexMap,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 06:02:04 GMT 2023
    - 10.3K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         *
         * <p><b>Context-sensitive interpretation:</b>
         * This path type makes sense only when a main module is added on the module-path by another dependency.
         * In no main module is found, the patch dependency may be added on the class-path or module-path
         * depending on whether {@link #CLASSES} or {@link #MODULES} is present.
         * </p>
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

        }
    
        public static String getLayout(ArtifactRepository repo) {
            try {
                return repo.getLayout().getId();
            } catch (LinkageError e) {
                /*
                 * NOTE: getId() was added in 3.x and is as such not implemented by plugins compiled against 2.x APIs.
                 */
                String className = repo.getLayout().getClass().getSimpleName();
                if (className.endsWith("RepositoryLayout")) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 16K bytes
    - Viewed (0)
Back to top