Попытка настроить новый проект с помощью Amazon AWS Java SDK через Maven, и, очевидно, Maven не может найти пакет s3.
Это ошибка:
[ОШИБКА] /X:/java/amazon/S3/s3shell/src/main/java/me/s3/S3Shell.java:[4,42] пакета software.amazon.awssdk.services.s3 не существует
А вот зависимости в файле pom:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>bom</artifactId>
<version>2.2.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>s3</artifactId>
<version>2.2.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>