sbt下载依赖报错,net.ssl.SSLException

举报
developer_Li 发表于 2025/03/03 16:14:30 2025/03/03
【摘要】 问题:sbt下载依赖报错download error: Caught javax.net.ssl.SSLException (Unrecognized SSL message, plaintext connection?) while downloading https://repo1.maven.org/maven2/joda-time/joda-time/2.10.10/joda-tim...

问题:sbt下载依赖报错download error: Caught javax.net.ssl.SSLException (Unrecognized SSL message, plaintext connection?) while downloading https://repo1.maven.org/maven2/joda-time/joda-time/2.10.10/joda-time-2.10.10.pom

原因:某些依赖可能在公共的中心仓中没有,所以需要配置maven的中心仓

解决方案:

  在build.sbt中配置仓库地址

resolvers ++= Seq( "Maven Central" at "https://repo1.maven.org/maven2/")

如果https不行则配置Http方式

resolvers ++= Seq( "Maven Central" at "http://repo1.maven.org/maven2/" )

拓展

maven怎么添加

<repositories>
    <repository>
        <id>central</id>
        <name>Maven Central Repository</name>
        <url>https://repo1.maven.org/maven2/</url>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>

阿里云仓库(也可以使用一些国内的镜像仓库来加速依赖项的下载速度)

<repositories>
    <repository>
        <id>aliyun-central</id>
        <name>Aliyun Maven Central Repository</name>
        <url>https://maven.aliyun.com/repository/public/</url>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>

【声明】本内容来自华为云开发者社区博主,不代表华为云及华为云开发者社区的观点和立场。转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息,否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。