任何人都可以帮助我使用 Maven 和 AWS 吗?在文档中,他们解释说我们需要添加以下依赖项:
<project>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>bom</artifactId>
<version>2.X.X</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>
我这样做了。我想添加依赖项以使用 S3 类(如AmazonS3Client等)。在mavenrepository中,我找到了包 S3,但是当我将它添加到我的 pom.xml 文件中时,IntelliJ 找不到它。
<!-- https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk-s3 -->
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
<version>1.11.923</version>
</dependency>
谁能帮助我并告诉我我在做什么有什么问题?我一直在尝试很多选择,但我无法弄清楚。我想要的只是使用来自 JAVA 程序的 S3 对象(基本上是一个 aws lambda 函数)