Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for publicationBuild (0.15 sec)

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

        }
    
        def "can publish to a S3 Maven repository bucket=#bucket"() {
            given:
            def mavenRepo = new MavenS3Repository(server, file("repo"), "/maven", bucket)
            buildFile << publicationBuild(mavenRepo.uri, """
                credentials(AwsCredentials)
                """)
            propertiesFile << """
            mavenAccessKey=someKey
            mavenSecretKey=someSecret
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            return publicationBuild(version, group, uri, "maven", '')
        }
    
        private static String publicationBuildWithCredentialsProvider(String version, String group, URI uri, Class<? extends Credentials> credentialsType = PasswordCredentials.class) {
            return publicationBuild(version, group, uri, "maven", "credentials(${credentialsType.simpleName})")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpIntegTest.groovy

            return publicationBuild(version, group, uri, "ivy", '')
        }
    
        private static String publicationBuildWithCredentialsProvider(String version, String group, URI uri, Class<? extends Credentials> credentialsType = org.gradle.api.credentials.PasswordCredentials.class) {
            return publicationBuild(version, group, uri, "ivy", "credentials(${credentialsType.simpleName})")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 21.8K bytes
    - Viewed (0)
Back to top