Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for expectPublishModuleWithCredentials (0.2 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            configureRepositoryCredentials(credentials.username, credentials.password)
    
            server.authenticationScheme = authScheme
    
            expectPublishModuleWithCredentials(module, credentials)
    
            when:
            succeeds 'publish'
    
            then:
            def localPom = file("build/publications/maven/pom-default.xml").assertIsFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpIntegTest.groovy

            buildFile << publicationBuild(version, group, ivyHttpRepo.uri)
    
            and:
            server.authenticationScheme = authScheme
            expectPublishModuleWithCredentials(module, credentials)
    
            when:
            run 'publish'
    
            then:
            module.assertMetadataAndJarFilePublished()
            module.jarFile.assertIsCopyOf(file('build/libs/publish-2.jar'))
    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