Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getArtifactUrls (0.41 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultMavenArtifactRepository.java

        }
    
        @Override
        public boolean isAllowInsecureProtocol() {
            return urlArtifactRepository.isAllowInsecureProtocol();
        }
    
        @Override
        public Set<URI> getArtifactUrls() {
            Set<URI> result = new LinkedHashSet<>();
            for (Object additionalUrl : additionalUrls) {
                result.add(fileResolver.resolveUri(additionalUrl));
            }
            return result;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 18 21:30:55 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/MavenArtifactRepository.java

         *
         * @return The additional URLs. Returns an empty list if there are no such URLs.
         */
        Set<URI> getArtifactUrls();
    
        /**
         * Adds some additional URLs to use to find artifact files. Note that these URLs are not used to find POM files.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.artifacts.repositories.MavenArtifactRepository.getArtifactUrls()> does not have raw return type assignable to org.gradle.api.provider.Property in (MavenArtifactRepository.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top