Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 71 for George (0.15 sec)

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

                            .map(Object::toString)
                            .toList();
                    request.getModelRepositoryHolder().merge(model.getRepositories(), false);
                    List<String> newRepos = request.getModelRepositoryHolder().getRepositories().stream()
                            .map(Object::toString)
                            .toList();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

            for (ArtifactRepositoryPolicy policy : policies) {
                if (effectivePolicy == null) {
                    effectivePolicy = new ArtifactRepositoryPolicy(policy);
                } else {
                    effectivePolicy.merge(policy);
                }
            }
    
            return effectivePolicy;
        }
    
        public Mirror getMirror(ArtifactRepository repository, List<Mirror> mirrors) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        }
    
        /* MNG-4129 */
        @Test
        void testPluginExecutionInheritanceWhenChildDoesNotDeclarePlugin() throws Exception {
            PomTestWrapper pom = buildPom("plugin-exec-inheritance/wo-merge");
            @SuppressWarnings("unchecked")
            List<PluginExecution> executions = (List<PluginExecution>) pom.getValue(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

                <ul>
                <li>{@code combine.children}: available values are {@code merge} (default) and {@code append},</li>
                <li>{@code combine.self}: available values are {@code merge} (default) and {@code override}.</li>
                </ul>
    
                @see <a href="https://maven.apache.org/pom.html#Plugins">POM Reference documentation</a>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    LookupExcep; static void <clinit>(); } org/codehaus/plexus/configuration/PlexusComponentDescr.class package org.codehaus.plexus.configuration; public synchronized class PlexusComponentDescr { public void PlexusComponentDescr(); public static void merge(org.codehaus.plexus.component.repository.ComponentDescriptor, org.codehaus.plexus.component.repository.ComponentDescriptor); private static void mergeConfiguration(org.codehaus.plexus.component.repository.ComponentDescriptor, org.codehaus.plexus.c...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 205.7K bytes
    - Viewed (0)
  6. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

        String CHILDREN_COMBINATION_MODE_ATTRIBUTE = "combine.children";
    
        String CHILDREN_COMBINATION_MERGE = "merge";
    
        String CHILDREN_COMBINATION_APPEND = "append";
    
        /**
         * This default mode for combining children DOMs during merge means that where element names match, the process will
         * try to merge the element data, rather than putting the dominant and recessive elements (which share the same
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Nov 27 23:11:34 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    org.codehaus.plexus.configuration.PlexusConfigurationE; } org/codehaus/plexus/configuration/PlexusComponentDescr.class package org.codehaus.plexus.configuration; public synchronized class PlexusComponentDescr { public void PlexusComponentDescr(); public static void merge(org.codehaus.plexus.component.repository.ComponentDescriptor, org.codehaus.plexus.component.repository.ComponentDescriptor); private static void mergeConfiguration(org.codehaus.plexus.component.repository.ComponentDescriptor, org.codehaus.plexus.c...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 233.3K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    org.codehaus.plexus.configuration.PlexusConfigurationE; } org/codehaus/plexus/configuration/PlexusComponentDescr.class package org.codehaus.plexus.configuration; public synchronized class PlexusComponentDescr { public void PlexusComponentDescr(); public static void merge(org.codehaus.plexus.component.repository.ComponentDescriptor, org.codehaus.plexus.component.repository.ComponentDescriptor); private static void mergeConfiguration(org.codehaus.plexus.component.repository.ComponentDescriptor, org.codehaus.plexus.c...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 233.3K bytes
    - Viewed (0)
  9. maven-artifact/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadata.java

         *
         * @return the filename
         */
        String getRemoteFilename();
    
        /**
         * Merge a new metadata set into this piece of metadata.
         * TODO this should only be needed on the repository metadata {@link org.apache.maven.artifact.metadata.ArtifactMetadata}
         *
         * @param metadata the new metadata
         */
        void merge(ArtifactMetadata metadata);
    
        /**
         * Store the metadata in the local repository.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3K bytes
    - Viewed (0)
  10. maven-artifact/src/main/java/org/apache/maven/artifact/metadata/ArtifactMetadata.java

     */
    @Deprecated
    public interface ArtifactMetadata extends org.apache.maven.repository.legacy.metadata.ArtifactMetadata {
        void merge(ArtifactMetadata metadata);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.1K bytes
    - Viewed (0)
Back to top