我想试用一下 Buildr,并想将它用于使用 Alfresco 的项目。Alfresco 项目正在维护一个 Maven 存储库: https ://artifacts.alfresco.com
如您所见,它使用的是https。
我尝试通过声明将 2 个 jars + 依赖项下载到类路径:
ALFRESCO_CORE= transitive('org.alfresco:alfresco-core:jar:4.2.b')
ALFRESCO_REPOSITORY= transitive('org.alfresco:alfresco-repository:jar:4.2.b')
构建文件失败并显示以下错误消息:
Requesting https://artifacts.alfresco.com/org/alfresco/alfresco-core/4.2.b/alfresco-core-4.2.b.pom
warning: peer certificate won't be verified in this SSL session
Buildr aborted!
RuntimeError : Failed to download org.alfresco:alfresco-core:pom:4.2.b, tried the following repositories:
http://repo1.maven.org/maven2/
https://artifacts.alfresco.com/
我相信,这是因为建造者不信任 Maven 存储库证书?
我怎样才能让它接受证书?或者,跳过证书验证?
目前,我无法访问存储库是一个主要的阻碍:(
我希望有人可以提示如何进行!阿加塔