Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for configureRepositoryCredentials (0.27 sec)

  1. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishSftpIntegrationTest.groovy

            given:
            def ivySftpRepo = getIvySftpRepo(m2Compatible)
            def module = ivySftpRepo.module("org.group.name", "publish", "2")
    
            settingsFile << 'rootProject.name = "publish"'
            configureRepositoryCredentials("sftp", "sftp", "ivy")
            buildFile << """
                apply plugin: 'java'
                apply plugin: 'ivy-publish'
    
                version = '2'
                group = 'org.group.name'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishSftpIntegrationTest.groovy

        def "can publish to a SFTP repository"() {
            given:
            def mavenSftpRepo = getMavenSftpRepo()
            def module = mavenSftpRepo.module('org.group.name', 'publish', '2').withModuleMetadata()
    
            configureRepositoryCredentials("sftp", "sftp", "maven")
            settingsFile << 'rootProject.name = "publish"'
            buildFile << """
                apply plugin: 'java'
                apply plugin: 'maven-publish'
    
                version = '2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top