Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for checksumPolicy (0.06 sec)

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

                String snapshotUpdates,
                String checksumPolicy)
                throws InvalidRepositoryException {
            ArtifactRepositoryPolicy snapshotsPolicy =
                    new ArtifactRepositoryPolicy(snapshots, snapshotUpdates, checksumPolicy);
    
            ArtifactRepositoryPolicy releasesPolicy =
                    new ArtifactRepositoryPolicy(releases, releaseUpdates, checksumPolicy);
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 33.5K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

        }
    
        private void handleChecksumFailure(String checksumPolicy, String message, Throwable cause)
                throws ChecksumFailedException {
            if (ArtifactRepositoryPolicy.CHECKSUM_POLICY_FAIL.equals(checksumPolicy)) {
                throw new ChecksumFailedException(message, cause);
            } else if (!ArtifactRepositoryPolicy.CHECKSUM_POLICY_IGNORE.equals(checksumPolicy)) {
                // warn if it is set to anything other than ignore
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 29.9K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

                String snapshotUpdates,
                String checksumPolicy) {
            ArtifactRepositoryPolicy snapshotsPolicy =
                    new ArtifactRepositoryPolicy(snapshots, snapshotUpdates, checksumPolicy);
    
            ArtifactRepositoryPolicy releasesPolicy =
                    new ArtifactRepositoryPolicy(releases, releaseUpdates, checksumPolicy);
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 31.2K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/mdo/profiles.mdo

                "never" (only if it doesn't exist locally).
              </description>
              <type>String</type>
            </field>
            <field>
              <name>checksumPolicy</name>
              <version>1.0.0</version>
              <description>
                What to do when verification of an artifact checksum fails. Valid values are "fail" (default for Maven 4 and
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jan 22 11:03:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                    if (orgUpdatePolicy != intUpdatePolicy) {
                        repositoryPolicy.setUpdatePolicy(intUpdatePolicy);
                    }
                    // ChecksumPolicy
                    String orgChecksumPolicy = repositoryPolicy.getChecksumPolicy();
                    String intChecksumPolicy = interpolate(orgChecksumPolicy);
                    if (orgChecksumPolicy != intChecksumPolicy) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 43.1K bytes
    - Viewed (0)
  6. api/maven-api-settings/src/main/mdo/settings.mdo

                (only if it doesn't exist locally).
              </description>
              <type>String</type>
            </field>
            <field>
              <name>checksumPolicy</name>
              <version>1.0.0+</version>
              <description>
                What to do when verification of an artifact checksum fails. Valid values are "fail" (default for Maven 4 and
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun May 18 09:15:56 UTC 2025
    - 33.8K bytes
    - Viewed (0)
Back to top