Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for ivyPattern (0.16 sec)

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

                }
    
                for (String ivyPattern : ivyPatterns) {
                    builder.addIvyPattern(ivyPattern);
                }
                Set<String> effectiveIvyPatterns = ivyPatterns.isEmpty() ? artifactPatterns : ivyPatterns;
                for (String ivyPattern : effectiveIvyPatterns) {
                    ResolvedPattern resolvedPattern = new ResolvedPattern(ivyPattern, fileResolver);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultIvyArtifactRepositoryTest.groovy

            def same = newRepo()
            def different = newRepo()
    
            given:
            repo.url = new URI("http://localhost")
            repo.ivyPattern("http://localhost/[thing]")
            same.url = new URI("http://localhost")
            same.ivyPattern("http://localhost/[thing]")
            different.url = new URI("http://localhost")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/ivy/AbstractIvyRemoteRepoResolveIntegrationTest.groovy

                        artifactPattern "${thirdPartyIvyRepo.artifactPattern}"
                        artifactPattern "${companyIvyRepo.artifactPattern}"
                        ivyPattern "${thirdPartyIvyRepo.ivyPattern}"
                        ivyPattern "${companyIvyRepo.ivyPattern}"
                    }
                }
                configurations { compile }
                dependencies {
                    compile 'other:3rdParty:1.2', 'company:original:1.1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/IvyResolverTest.groovy

            builder.metadataSources = []
            builder.authenticated = false
            builder.authenticationSchemes = []
            builder.layoutType = "test"
            if (ivyPattern != null) {
                builder.addIvyResource(new URI("http://localhost"), ivyPattern)
            }
            def descriptor = builder.create()
    
            new IvyResolver(
                descriptor,
                transport,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

            boolean publishGradle() {
                gradle
            }
        }
    
        IvyFileModule(String ivyPattern, String artifactPattern, String modulePath, TestFile moduleDir, String organisation, String module, String revision, boolean m2Compatible) {
            this.modulePath = modulePath
            this.ivyPattern = ivyPattern
            this.artifactPattern = artifactPattern
            this.moduleDir = moduleDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepository.java

     * <li>If no URL has been specified but additional patterns have been added via {@link #artifactPattern} or {@link #ivyPattern}, then the first defined pattern will be used.</li>
     * </ol>
     * <p>
     * Repositories of this type are created by the {@link org.gradle.api.artifacts.dsl.RepositoryHandler#ivy(org.gradle.api.Action)} group of methods.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 02 20:32:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpIntegTest.groovy

                            artifactPattern "http://localhost:${server.port}/alternative/[module]/[artifact]-[revision].[ext]"
                            ivyPattern "${ivyHttpRepo.ivyPattern}"
                            ivyPattern "http://localhost:${server.port}/secondary-ivy/[module]/ivy-[revision].xml"
                        }
                    }
                    publications {
                        ivy(IvyPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/PluginManagementDslSpec.groovy

                        ivy {
                            url "http://repo.internal.net/ivy"
                            artifactPattern '[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]'
                            ivyPattern '[organisation]/[module]/[revision]/[module]-[revision].ivy'
                        }
                    }
                }
            """
    
            expect:
            succeeds 'help'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/tasks/PublishToIvyRepository.java

                    repository.setName(name);
                    repository.setUrl(repositoryUrl);
                    artifactPatterns.forEach(repository::artifactPattern);
                    ivyPatterns.forEach(repository::ivyPattern);
                    repository.setAllowInsecureProtocol(allowInsecureProtocol);
                    repository.setRepositoryLayout(layout);
                    if (credentials != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationRepositoriesBuildOperationIntegrationTest.groovy

                        url 'http://myCompanyBucket/ivyrepo'
                        artifactPattern 'http://myCompanyBucket/ivyrepo/[organisation]/[module]/[artifact]-[revision]'
                        ivyPattern 'http://myCompanyBucket/ivyrepo/[organisation]/[module]/ivy-[revision].xml'
                        patternLayout {
                            artifact '[module]/[organisation]/[revision]/[artifact]'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
Back to top