Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 1.85 KB

README.md

File metadata and controls

45 lines (35 loc) · 1.85 KB

Rackspace CloudFiles Integrations Module

This module contains Broadleaf integrations with Rackspace CloudFiles APIs.

Steps to enable this module

  1. Add the dependency management section to your parent pom.xml:

    <dependency>
        <groupId>org.broadleafcommerce</groupId>
        <artifactId>broadleaf-rackspace</artifactId>
        <version>2.0.0-GA</version>
        <type>jar</type>
        <scope>compile</scope>
    </dependency>
  2. Pull this dependency into your core/pom.xml:

    <dependency>
        <groupId>org.broadleafcommerce</groupId>
        <artifactId>broadleaf-rackspace</artifactId>
    </dependency>

Running/Building Locally

Note: If you are a BLC developer, pull down the 'ThirdPartyIntegrationConfig' project and do a local maven install.

  1. Fill in appropriate values within src/main/resources/config/bc/rackspace/common.properties but do not check in
broadleaf.rackspace.cloudfiles.provider=<provider>
broadleaf.rackspace.cloudfiles.username=<username>
broadleaf.rackspace.cloudfiles.apikey=<apikey>
broadleaf.rackspace.cloudfiles.region=<region>
broadleaf.rackspace.cloudfiles.container=<container>
broadleaf.rackspace.cloudfiles.container.subdirectory=<subdirectory>

Other Considerations

This module declares a hard dependency on Google Guava, in lock-step with the Guava version from JClouds. This is because JClouds 💩s all over itself when there is a Guava version that it doesn't like. This might actually be a good reason to drop JClouds for this integration completely, but whatever. The hard dependency doesn't seem to break anything else in Broadleaf after some smoke tests and it definitely makes this thing work.

If you REALLY need a different version of Guava than the one that is specified here, then please send a pull request!