使用 curl 降压错误:由于协议 (http)
Buck error using curl: due to protocol(http)
使用 Ubuntu-14.04LTS 系统并按照此 Link 中提供的说明,我正在尝试为我的 gerrit 版本 2.13 构建 gerrit delete-project.jar
文件,但是在构建期间它失败并出现以下错误。
Download http://repo1.maven.org/maven2/com/google/inject/guice/4.1.0/guice-4.1.0.jar error using curl: Command '['curl', '--proxy-anyauth', '-ksfo', '/root/.gerritcodereview/buck-cache/downloaded-artifacts/guice-4.1.0.jar-eeb69005da379a10071aa4948c48d89250febb07', 'http://repo1.maven.org/maven2/com/google/inject/guice/4.1.0/guice-4.1.0.jar']' returned non-zero exit status 22
Download http://repo1.maven.org/maven2/com/googlecode/javaewah/JavaEWAH/0.7.9/JavaEWAH-0.7.9-sources.jar error using curl: Command '['curl', '--proxy-anyauth', '-ksfo', '/root/.gerritcodereview/buck-cache/downloaded-artifacts/javaewah-0.7.9-src.jar-dd7152dbfe349ce0d4e311f5bf2fd91935e22f77', 'http://repo1.maven.org/maven2/com/googlecode/javaewah/JavaEWAH/0.7.9/JavaEWAH-0.7.9-sources.jar']' returned non-zero exit status 22
此 Link 中提供的解决方法 http
协议已更改为 https
现在,对于 gerrit buck
构建,我需要在何处修改协议?因为cat plugins/delete-project/lib/gerrit/BUCK
我看不到要修改的协议。
include_defs('//bucklets/maven_jar.bucklet')
VER = '2.13.9'
REPO = MAVEN_CENTRAL
maven_jar(
name = 'plugin-api',
id = 'com.google.gerrit:gerrit-plugin-api:' + VER,
sha1 = 'a9b00025900f68c1f86036ea07591a2876b10c37',
attach_source = False,
repository = REPO,
license = 'Apache2.0',
)
maven_jar(
name = 'acceptance-framework',
id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER,
sha1 = '53a6e2baca19303bbf3967b861cf9814323c31f6',
license = 'Apache2.0',
attach_source = False,
repository = REPO,
)
请指导修改。提前致谢。
已将以下文件中的 http
协议更新为 https
,现在可以正常工作了。
1) WORKSPACE
2) tools/util.py
使用 Ubuntu-14.04LTS 系统并按照此 Link 中提供的说明,我正在尝试为我的 gerrit 版本 2.13 构建 gerrit delete-project.jar
文件,但是在构建期间它失败并出现以下错误。
Download http://repo1.maven.org/maven2/com/google/inject/guice/4.1.0/guice-4.1.0.jar error using curl: Command '['curl', '--proxy-anyauth', '-ksfo', '/root/.gerritcodereview/buck-cache/downloaded-artifacts/guice-4.1.0.jar-eeb69005da379a10071aa4948c48d89250febb07', 'http://repo1.maven.org/maven2/com/google/inject/guice/4.1.0/guice-4.1.0.jar']' returned non-zero exit status 22
Download http://repo1.maven.org/maven2/com/googlecode/javaewah/JavaEWAH/0.7.9/JavaEWAH-0.7.9-sources.jar error using curl: Command '['curl', '--proxy-anyauth', '-ksfo', '/root/.gerritcodereview/buck-cache/downloaded-artifacts/javaewah-0.7.9-src.jar-dd7152dbfe349ce0d4e311f5bf2fd91935e22f77', 'http://repo1.maven.org/maven2/com/googlecode/javaewah/JavaEWAH/0.7.9/JavaEWAH-0.7.9-sources.jar']' returned non-zero exit status 22
此 Link 中提供的解决方法 http
协议已更改为 https
现在,对于 gerrit buck
构建,我需要在何处修改协议?因为cat plugins/delete-project/lib/gerrit/BUCK
我看不到要修改的协议。
include_defs('//bucklets/maven_jar.bucklet')
VER = '2.13.9'
REPO = MAVEN_CENTRAL
maven_jar(
name = 'plugin-api',
id = 'com.google.gerrit:gerrit-plugin-api:' + VER,
sha1 = 'a9b00025900f68c1f86036ea07591a2876b10c37',
attach_source = False,
repository = REPO,
license = 'Apache2.0',
)
maven_jar(
name = 'acceptance-framework',
id = 'com.google.gerrit:gerrit-acceptance-framework:' + VER,
sha1 = '53a6e2baca19303bbf3967b861cf9814323c31f6',
license = 'Apache2.0',
attach_source = False,
repository = REPO,
)
请指导修改。提前致谢。
已将以下文件中的 http
协议更新为 https
,现在可以正常工作了。
1) WORKSPACE
2) tools/util.py