Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getMavenS3Repo (0.19 sec)

  1. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/AbstractS3DependencyResolutionTest.groovy

        }
    
        String getBucket() {
            return 'tests3bucket'
        }
    
        abstract String getRepositoryPath()
    
    
        MavenS3Repository getMavenS3Repo() {
            new MavenS3Repository(server, file(getTestDirectory()), getRepositoryPath(), getBucket())
        }
    
        IvyS3Repository getIvyS3Repo() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenS3SnapshotRepoIntegrationTest.groovy

    class MavenS3SnapshotRepoIntegrationTest extends AbstractS3DependencyResolutionTest {
    
        String artifactVersion = "1.45-SNAPSHOT"
        MavenS3Module module
    
        def setup() {
            module = getMavenS3Repo().module("org.gradle", "test", artifactVersion)
        }
    
        def "resolves a maven snapshot module stored in S3"() {
            setup:
            module.publish()
    
            buildFile << mavenAwsRepoDsl()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenS3RepoResolveIntegrationTest.groovy

        @Override
        String getRepositoryPath() {
            return '/maven/release/'
        }
    
        String artifactVersion = "1.85"
        MavenS3Module module
    
        def setup(){
            module = getMavenS3Repo().module("org.gradle", "test", artifactVersion)
        }
    
        def "should not download artifacts when already present in maven home"() {
            setup:
            module.publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenS3ProxiedRepoIntegrationTest.groovy

        final String artifactVersion = "1.85"
        MavenS3Module module
    
        @Override
        def setup() {
            proxyServer.start()
            module = getMavenS3Repo().module("org.gradle", "test", artifactVersion)
        }
    
        def "should proxy requests using HTTP system proxy settings"() {
            setup:
            module.publish()
    
            buildFile << mavenAwsRepoDsl()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenPublishS3ErrorsIntegrationTest.groovy

            then:
            fails 'publish'
    
            failure.assertNotOutput('To use assume role profiles the aws-java-sdk-sts module must be on the class path.')
        }
    
        MavenS3Repository getMavenS3Repo() {
            new MavenS3Repository(server, file(getTestDirectory()), getRepositoryPath(), getBucket())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top