我有使用saml访问权限的服务器 我想编写从该服务器获取依赖项的java应用程序。 我创建了settings.xml
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>repoID</id>
<username>myuser</username>
<password>mypaswrod</password>
</server>
</servers>
<profiles>
<profile>
<id>snapshot.build</id>
<repositories>
<repository>
<id>repoID</id>
<url>my-url</url>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>snapshot.build</activeProfile>
</activeProfiles>
</settings>
当我尝试运行mvn clean install时,我从mvn收到错误,因为SAML。 错误,因为mvn没有成功下载相关的依赖项。 来自MVN的错误&#34;没有checkssum avaliable&#34;,当我试图打开下载的文件时我得到了SAML的html错误 MVN是否支持SMAL访问?