Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,866 for _repositories_ (0.29 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.api.artifacts.repositories.AuthenticationContainer.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.api.artifacts.repositories.IvyArtifactRepository.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.api.artifacts.repositories.PasswordCredentials.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.api.artifacts.repositories.UrlArtifactRepository.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.api.artifacts.repositories.ArtifactRepository.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/dsl/org.gradle.api.artifacts.repositories.IvyArtifactRepositoryMetaDataProvider.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.api.artifacts.repositories.AuthenticationSupported.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

    // tag::maven-ivy-gcs-repository[]
    repositories {
        maven {
            url "gcs://myCompanyBucket/maven2"
        }
    
        ivy {
            url "gcs://myCompanyBucket/ivyrepo"
        }
    }
    // end::maven-ivy-gcs-repository[]
    
    // tag::maven-central[]
    repositories {
        mavenCentral()
    }
    // end::maven-central[]
    
    // tag::maven-google[]
    repositories {
        google()
    }
    // end::maven-google[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

    // tag::maven-ivy-gcs-repository[]
    repositories {
        maven {
            url = uri("gcs://myCompanyBucket/maven2")
        }
    
        ivy {
            url = uri("gcs://myCompanyBucket/ivyrepo")
        }
    }
    // end::maven-ivy-gcs-repository[]
    
    // tag::maven-central[]
    repositories {
        mavenCentral()
    }
    // end::maven-central[]
    
    // tag::maven-google[]
    repositories {
        google()
    }
    // end::maven-google[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BuildscriptRepositoryContentFilteringIntegrationTest.groovy

            given:
            def repositories = """
        repositories {
            maven {
                url "${mavenHttpRepo.uri}"
                content {
                    $notation
                }
            }
            ivy {
                url "${ivyHttpRepo.uri}"
            }
        }
    """
            if (inSettings) {
                settingsFile << """
    pluginManagement {
        $repositories
    }
    
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top