Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for Updated (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                    MavenRepositorySystem.DEFAULT_REMOTE_REPO_ID,
                    true,
                    ArtifactRepositoryPolicy.UPDATE_POLICY_DAILY,
                    false,
                    ArtifactRepositoryPolicy.UPDATE_POLICY_DAILY,
                    ArtifactRepositoryPolicy.DEFAULT_CHECKSUM_POLICY);
        }
    
        public ArtifactRepository createRepository(
                String url,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 32.6K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadataSource.java

                throws ArtifactMetadataRetrievalException;
    
        /**
         * Get a list of available versions for an artifact in the remote deployment repository. This ignores any update
         * policy checks and mirrors and always retrieves the latest information from the given repository.
         *
         * @param artifact artifact we are interested in. Only <code>groupid</code> and <code>artifactId</code> are
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/model/plugin/DefaultLifecycleBindingsInjector.java

                        .collect(Collectors.toList());
                Model lifecycleModel = Model.newBuilder()
                        .build(Build.newBuilder().plugins(plugins).build())
                        .build();
                model.update(merger.merge(model.getDelegate(), lifecycleModel));
            }
        }
    
        /**
         *  The domain-specific model merger for lifecycle bindings
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

            sessionBuilder.setUpdatePolicy(
                    request.isNoSnapshotUpdates()
                            ? RepositoryPolicy.UPDATE_POLICY_NEVER
                            : request.isUpdateSnapshots() ? RepositoryPolicy.UPDATE_POLICY_ALWAYS : null);
    
            int errorPolicy = 0;
            errorPolicy |= request.isCacheNotFound()
                    ? ResolutionErrorPolicy.CACHE_NOT_FOUND
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  5. maven-compat/src/main/mdo/profiles.mdo

              <defaultValue>true</defaultValue>
            </field>
            <field>
              <name>updatePolicy</name>
              <version>1.0.0</version>
              <description>
                The frequency for downloading updates - can be "always", "daily" (default), "interval:XXX" (in minutes) or
                "never" (only if it doesn't exist locally).
              </description>
              <type>String</type>
            </field>
            <field>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Jan 03 21:08:35 GMT 2023
    - 13.8K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java

        }
    
        @Test
        void testPastModelVersion() throws Exception {
            // a Maven 1.x pom will not even
            // update the resource if we stop supporting modelVersion 4.0.0
            File f1 = getTestFile("src/test/resources/projects/past-model-version-pom.xml");
    
            ProjectBuildingException e = assertThrows(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:04:04 GMT 2023
    - 16.5K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        TransferListener getTransferListener();
    
        // Logging
        MavenExecutionRequest setLoggingLevel(int loggingLevel);
    
        int getLoggingLevel();
    
        // Update snapshots
        MavenExecutionRequest setUpdateSnapshots(boolean updateSnapshots);
    
        boolean isUpdateSnapshots();
    
        MavenExecutionRequest setNoSnapshotUpdates(boolean noSnapshotUpdates);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        private int degreeOfConcurrency = 1;
    
        private String builderId = "singlethreaded";
    
        private Map<String, List<ToolchainModel>> toolchains;
    
        /**
         * Suppress SNAPSHOT updates.
         *
         * @issue MNG-2681
         */
        private boolean noSnapshotUpdates = false;
    
        private boolean useLegacyLocalRepositoryManager = false;
    
        private Map<String, Object> data;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 31K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                            </configuration>
                        </execution>
                    </executions>
                </plugin>
                <plugin>
                    <!--
                    Updates Version#id().
                    -->
                    <groupId>com.google.code.maven-replacer-plugin</groupId>
                    <artifactId>replacer</artifactId>
                    <version>1.5.3</version>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 24.5K bytes
    - Viewed (0)
  10. api/maven-api-settings/src/main/mdo/settings.mdo

              <defaultValue>true</defaultValue>
            </field>
            <field>
              <name>updatePolicy</name>
              <version>1.0.0+</version>
              <description>
                The frequency for downloading updates - can be "always",
                "daily" (default), "interval:XXX" (in minutes) or "never"
                (only if it doesn't exist locally).
              </description>
              <type>String</type>
            </field>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
Back to top