I am experimenting replacing AWS S3 sdk for my maven project with multicloudj
com.amazonaws
aws-java-sdk-s3
1.12.788
jar
compile
README does not specify correctly what should I include in dependency management and dependencies. After investigating the multicloudj project structure, I believe the correct way to include necessary dependencies from blob and sts is:
<dependency>
<groupId>com.salesforce.multicloudj</groupId>
<artifactId>blob-client</artifactId>
</dependency>
<dependency>
<groupId>com.salesforce.multicloudj</groupId>
<artifactId>blob-aws</artifactId>
</dependency>
<dependency>
<groupId>com.salesforce.multicloudj</groupId>
<artifactId>sts-client</artifactId>
</dependency>
<dependency>
<groupId>com.salesforce.multicloudj</groupId>
<artifactId>sts-aws</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.salesforce.multicloudj</groupId>
<artifactId>blob</artifactId>
<version>0.2.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.salesforce.multicloudj</groupId>
<artifactId>sts</artifactId>
<version>0.2.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
Please correct the README file.
I am experimenting replacing AWS S3 sdk for my maven project with multicloudj
com.amazonaws aws-java-sdk-s3 1.12.788 jar compileREADME does not specify correctly what should I include in dependency management and dependencies. After investigating the multicloudj project structure, I believe the correct way to include necessary dependencies from blob and sts is:
Please correct the README file.