Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for awsIm (0.03 sec)

  1. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

    repositories {
        maven {
            url "s3://myCompanyBucket/maven2"
            authentication {
               awsIm(AwsImAuthentication) // load from EC2 role or env var
            }
        }
    
        ivy {
            url "s3://myCompanyBucket/ivyrepo"
            authentication {
               awsIm(AwsImAuthentication)
            }
        }
    }
    // end::maven-ivy-s3-repository-with-iam[]
    
    // tag::maven-ivy-gcs-repository[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

        maven {
            url = uri("s3://myCompanyBucket/maven2")
            authentication {
                create<AwsImAuthentication>("awsIm") // load from EC2 role or env var
            }
        }
    
        ivy {
            url = uri("s3://myCompanyBucket/ivyrepo")
            authentication {
                create<AwsImAuthentication>("awsIm")
            }
        }
    }
    // end::maven-ivy-s3-repository-with-iam[]
    
    // tag::maven-ivy-gcs-repository[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenPublishS3ErrorsIntegrationTest.groovy

                publishing {
                    repositories {
                        maven {
                            url "${mavenS3Repo.uri}"
                            authentication {
                               awsIm(AwsImAuthentication)
                            }
                        }
                    }
                    publications {
                        pub(MavenPublication) {
                            from components.java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenPublishS3IntegrationTest.groovy

            given:
            def mavenRepo = new MavenS3Repository(server, file("repo"), "/maven", "tests3Bucket")
            buildFile << publicationBuild(mavenRepo.uri, """
                authentication {
                   awsIm(AwsImAuthentication)
                }
                """)
    
            when:
            def module = mavenRepo.module('org.gradle.test', 'publishS3Test', '1.0').withModuleMetadata()
            expectPublish(module.artifact)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top