Skip to content

README for including multicloudj dependencies need work #55

@gs14n

Description

@gs14n

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.

Metadata

Metadata

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions