Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 90 for Clement (0.16 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

            }
    
            /**
             * Returns the option followed by a string representation of the given path elements.
             * The path elements are separated by an option-specific or platform-specific separator.
             * If the given {@code paths} argument contains no element, then this method returns an empty string.
             *
             * @param paths the path to format as a string
    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)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

         * Returns the project artifacts as immutable list. Elements are the project POM artifact and the artifact
         * produced by this project build, if applicable. Hence, the returned list may have one or two elements
         * (never less than 1, never more than 2), depending on project packaging.
         * <p>
         * The list's first element is ALWAYS the project POM artifact. Presence of second element in the list depends
         * solely on the project packaging.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

            dependencies = new LinkedHashMap<>(count + count / 3);
        }
    
        /**
         * Adds the given path element to the specified type of path.
         *
         * @param type the type of path (class-path, module-path, …)
         * @param path the path element to add
         */
        private void addPathElement(PathType type, Path path) {
    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)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

         * The head of returned list is result of {@link Project#getArtifacts()} method, so same applies here: the list can have
         * minimum of one element. The maximum number of elements is in turn dependent on build configuration and lifecycle
         * phase when this method was invoked (i.e. is javadoc jar built and attached, is sources jar built attached, are
         * all the artifact signed, etc.).
    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)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Information about the modules contained in a path element.
     * The path element may be a JAR file or a directory. Directories may use either package hierarchy
     * or module hierarchy, but not module source hierarchy. The latter is excluded because this class
     * is for path elements of compiled codes.
     */
    class PathModularization {
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultPluginManagementInjector.java

                    for (Plugin element : src) {
                        Object key = getPluginKey().apply(element);
                        managedPlugins.put(key, element);
                    }
    
                    List<Plugin> newPlugins = new ArrayList<>();
                    for (Plugin element : target.getPlugins()) {
                        Object key = getPluginKey().apply(element);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

                    for (Plugin element : tgt) {
                        Object key = getPluginKey().apply(element);
                        Plugin existing = master.get(key);
                        if (existing != null) {
                            element = mergePlugin(element, existing, sourceDominant, context);
    
                            master.put(key, element);
    
                            if (!pending.isEmpty()) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

                }
    
                for (Repository element : dominant) {
                    Object key = getRepositoryKey().apply(element);
                    merged.put(key, element);
                }
    
                for (Repository element : recessive) {
                    Object key = getRepositoryKey().apply(element);
                    if (!merged.containsKey(key)) {
                        merged.put(key, element);
                    }
                }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultLifecycleBindingsInjector.java

                    for (Plugin element : tgt) {
                        Object key = getPluginKey().apply(element);
                        merged.put(key, element);
                    }
    
                    Map<Object, Plugin> added = new LinkedHashMap<>();
    
                    for (Plugin element : src) {
                        Object key = getPluginKey().apply(element);
                        Plugin existing = merged.get(key);
    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)
  10. maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/sub/pom.xml

      <name>Maven Integration Test :: MNG-3979</name>
      <description>
        Test that during inheritance the merging/joining of subtrees with equal identifier doesn't crash if the parent
        POM has a non-empty element and the child POM has an empty element to join.
      </description>
    
      <properties/>
    
      <repositories>
        <repository>
          <id>equal-repo-id</id>
          <url>file:///${basedir}/null</url>
          <snapshots/>
          <releases/>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2.3K bytes
    - Viewed (0)
Back to top