使用Sftp Maven回购槽代理的Gradle超时

时间:2019-04-25 16:07:20

标签: android gradle android-gradle

我想通过Windows上的日常任务来启动我的仪器化测试,但是该公司有一个代理。我可以使用gradlew -Dhttp.proxyHost=x.x.x.x -Dhttp.proxyPort=xxxx -Dhttps.proxyHost=x.x.x.x -Dhttps.proxyPort=xxxx connectedProdDebugAndroidTest启动gradle命令,由于包含我们公司lib的sftp存储库超时,因此一切似乎运行顺利,直到测试失败。

当我与Android Studio运行gradle同步时,它运行良好。

这是我回购配置的方式:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "xxxxxxxxx"
        minSdkVersion 19
        targetSdkVersion 28
        versionCode 1
        versionName versionString
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
....

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])

    // Company libs
    implementation 'xxxxxx:xxxxx:2.0.7.47'
    implementation 'xxxxxx:xxxxxxxxxx:+'
    implementation 'xxxxxx:xxxxxxxx:1.0.0.1'
    implementation 'xxxxxx:xxxxxxxxxxxx:+'

    // Retrofit & okhttp libs
    implementation 'com.squareup.retrofit2:retrofit:2.1.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.1.0'
    implementation 'com.squareup.okhttp3:okhttp:3.4.1'
    implementation 'com.squareup.okhttp3:logging-interceptor:3.4.1'

    //Test
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'

    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    androidTestImplementation 'com.android.support.test:rules:1.0.2'

}

repositories {
    mavenLocal()
    mavenCentral()
    maven {
        url 'sftp://xxx.xx.x.x:8080/home/maven'
        credentials {
            username 'xxx'
            password 'xxxxxxxxxxx'
        }
    }
}

如何在命令行中使gradle sftp连接通过低谷代理?

0 个答案:

没有答案