Maven 没有安装 aws-encryption-sdk-java 依赖项
Maven not installing aws-encryption-sdk-java dependency
maven 菜鸟在这里
我的 pom.xml
文件中有这个
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-encryption-sdk-java</artifactId>
<version>1.6.1</version>
</dependency>
但出于某种原因,当我执行 mvn dependency:resolve
时,它永远不会出现在列表中,并且代码本身永远无法 import com.amazonaws.encryptionsdk
。此外,jar 文件不会出现在 IntelliJ 中的 External Libraries
下。
如果我的 google 技能还没有找到我,mvn dependency:resolve
是不是应该下载 jar 文件?请让我知道我错过了什么。谢谢!
您要连接到哪些存储库?
您是否连接到 nexus/artifactory/... 而它又无法下载依赖项?
您可以检查 settings.xml 中的存储库(通常在 .m2 文件夹中)。
如果使用 nexus/artifactory/... 如果出现问题,请检查相应的应用程序
您是否使用了某种代理服务器?
您可以通过向命令添加以下标志之一来检查其他日志记录输出:
-e, --errors (Produce execution error messages)
-X, --debug (Produce execution debug output)
我常用mvn clean install
maven 菜鸟在这里
我的 pom.xml
文件中有这个
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-encryption-sdk-java</artifactId>
<version>1.6.1</version>
</dependency>
但出于某种原因,当我执行 mvn dependency:resolve
时,它永远不会出现在列表中,并且代码本身永远无法 import com.amazonaws.encryptionsdk
。此外,jar 文件不会出现在 IntelliJ 中的 External Libraries
下。
如果我的 google 技能还没有找到我,mvn dependency:resolve
是不是应该下载 jar 文件?请让我知道我错过了什么。谢谢!
您要连接到哪些存储库?
您是否连接到 nexus/artifactory/... 而它又无法下载依赖项?
您可以检查 settings.xml 中的存储库(通常在 .m2 文件夹中)。
如果使用 nexus/artifactory/... 如果出现问题,请检查相应的应用程序
您是否使用了某种代理服务器?
您可以通过向命令添加以下标志之一来检查其他日志记录输出:
-e, --errors (Produce execution error messages)
-X, --debug (Produce execution debug output)
我常用mvn clean install