Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/integtests/resolve/resource/sftp/AbstractSftpDependencyResolutionTest.groovy

        }
    
        IvySftpRepository getIvySftpRepo(boolean m2Compatible, String dirPattern = null) {
            new IvySftpRepository(server, '/repo', m2Compatible, dirPattern)
        }
    
        IvySftpRepository getIvySftpRepo(String contextPath) {
            new IvySftpRepository(server, contextPath, false, null)
        }
    
        IvySftpRepository getIvySftpRepo() {
            new IvySftpRepository(server, '/repo')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishSftpIntegrationTest.groovy

    import org.junit.Rule
    
    class IvyPublishSftpIntegrationTest extends AbstractIvyPublishIntegTest {
    
        @Rule
        final SFTPServer server = new SFTPServer(temporaryFolder)
    
        IvySftpRepository getIvySftpRepo(boolean m2Compatible = false, String dirPattern = null) {
            new IvySftpRepository(server, '/repo', m2Compatible, dirPattern)
        }
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/integtests/resolve/resource/sftp/ivy/IvySftpRepoErrorsIntegrationTest.groovy

        def "cannot add invalid authentication types for sftp repo"() {
            given:
            def remoteIvyRepo = getIvySftpRepo()
            def module = remoteIvyRepo.module('org.group.name', 'projectA', '1.2')
            module.publish()
            and:
            buildFile << """
    repositories {
        ivy {
            url "${getIvySftpRepo().uri}"
            authentication {
                auth(BasicAuthentication)
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top