This module contains integration between for popular cloud frameworks and CDI.
Currently, support for JClouds BlobStore is provided.
Currently, support for Inifispan's Cache API is provided.
To run the tests, you must have an AWS account, and sign up for S3. Having done this,
add this profile to your settings.xml
:
<profile>
<id>aws</id>
<activation>
<property>
<name>aws</name>
<value>!false</value>
</property>
</activation>
<properties>
<!-- Your AWS Access Key ID -->
<aws.accessKeyId></aws.accessKeyId>
<!-- Your AWS Secret Access Key-->
<aws.secretAccessKey></aws.secretAccessKey>
</properties>
</profile>
To run the tests from Eclipse, you'll need to configure two Program Arguments in the test's Run Configuration:
-Daws.accessKeyId=<AccessKeyId>
-Daws.secretAccessKey=<SecretAccessKey>