Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for Haddad (0.2 sec)

  1. maven-core/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerTest.java

                        "",
                        "type",
                        "classifier",
                        "extension",
                        "packaging",
                        "language",
                        "added to classpath",
                        "includesDependencies",
                        ""
                    };
    
                    int i = 0;
                    for (String col : cols) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Dec 14 10:51:16 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  2. 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)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultLifecycleBindingsInjector.java

                            element = mergePlugin(existing, element, sourceDominant, context);
                        } else {
                            added.put(key, element);
                        }
                        merged.put(key, element);
                    }
    
                    if (!added.isEmpty()) {
                        PluginManagement pluginMgmt = (PluginManagement) context.get(PLUGIN_MANAGEMENT);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolution.java

    /**
     *
     *
     */
    @Deprecated
    public class MetadataResolution {
        /** resolved MD  */
        private ArtifactMetadata artifactMetadata;
    
        /** repositories, added by this POM  */
        private Collection<ArtifactRepository> metadataRepositories;
        // -------------------------------------------------------------------
        public MetadataResolution(ArtifactMetadata artifactMetadata) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

                effectiveScope = Artifact.SCOPE_SYSTEM;
            } else if (Artifact.SCOPE_COMPILE.equals(originalScope) && Artifact.SCOPE_COMPILE.equals(inheritedScope)) {
                // added to retain compile scope. Remove if you want compile inherited as runtime
                effectiveScope = Artifact.SCOPE_COMPILE;
            } else if (Artifact.SCOPE_TEST.equals(inheritedScope)) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 30.3K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

        /**
         * Add a compilation source root to the given project for the given scope.
         * The path will be transformed into an absolute path and added to the list for the given scope,
         * if not already present.
         *
         * @param project the project
         * @param scope the scope, i.e. usually main or test
         * @param sourceRoot the new source root
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Feb 09 17:13:31 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    Contributor: i) changes to the Program, and 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 conjunction with the Program under their own license...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelResolver.java

        /**
         * Adds a repository to use for subsequent resolution requests. The order in which repositories are added matters,
         * repositories that were added first should also be searched first. When multiple repositories with the same
         * identifier are added, only the first repository being added will be used.
         *
         * @param repository The repository to add to the internal search chain, must not be {@code null}.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6K bytes
    - Viewed (0)
Back to top