Repository: jclouds
Updated Branches:
  refs/heads/master d43c3ea3e -> 3932e8a3b


Default values for aws credential properties

Every project was using undefined properties in their pom.xml.
A default value for test.aws.identity and test.aws.credential was
added.


Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/3932e8a3
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/3932e8a3
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/3932e8a3

Branch: refs/heads/master
Commit: 3932e8a3bd0a12085c214cf5f927a0830f757f0e
Parents: d43c3ea
Author: Roman C. Coedo <[email protected]>
Authored: Wed Jul 2 23:45:19 2014 +0200
Committer: Andrew Gaul <[email protected]>
Committed: Wed Jul 2 15:33:10 2014 -0700

----------------------------------------------------------------------
 providers/aws-cloudwatch/pom.xml | 2 ++
 providers/aws-ec2/pom.xml        | 4 +++-
 providers/aws-route53/pom.xml    | 2 ++
 providers/aws-s3/pom.xml         | 2 ++
 providers/aws-sqs/pom.xml        | 2 ++
 providers/aws-sts/pom.xml        | 2 ++
 6 files changed, 13 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/3932e8a3/providers/aws-cloudwatch/pom.xml
----------------------------------------------------------------------
diff --git a/providers/aws-cloudwatch/pom.xml b/providers/aws-cloudwatch/pom.xml
index 1c5e53b..542a6a3 100644
--- a/providers/aws-cloudwatch/pom.xml
+++ b/providers/aws-cloudwatch/pom.xml
@@ -32,6 +32,8 @@
   <packaging>bundle</packaging>
 
   <properties>
+    <test.aws.identity>FIXME_IDENTITY</test.aws.identity>
+    <test.aws.credential>FIXME_CREDENTIAL</test.aws.credential>
     
<test.aws-cloudwatch.endpoint>https://monitoring.us-east-1.amazonaws.com</test.aws-cloudwatch.endpoint>
     
<test.aws-cloudwatch.api-version>2010-08-01</test.aws-cloudwatch.api-version>
     <test.aws-cloudwatch.build-version />

http://git-wip-us.apache.org/repos/asf/jclouds/blob/3932e8a3/providers/aws-ec2/pom.xml
----------------------------------------------------------------------
diff --git a/providers/aws-ec2/pom.xml b/providers/aws-ec2/pom.xml
index 8bddee5..5b43a13 100644
--- a/providers/aws-ec2/pom.xml
+++ b/providers/aws-ec2/pom.xml
@@ -32,6 +32,8 @@
   <packaging>bundle</packaging>
 
   <properties>
+    <test.aws.identity>FIXME_IDENTITY</test.aws.identity>
+    <test.aws.credential>FIXME_CREDENTIAL</test.aws.credential>
     
<test.aws-ec2.endpoint>https://ec2.us-east-1.amazonaws.com</test.aws-ec2.endpoint>
     <test.aws-ec2.api-version>2012-06-01</test.aws-ec2.api-version>
     <test.aws-ec2.build-version />
@@ -108,7 +110,7 @@
         <artifactId>clojure-maven-plugin</artifactId>
       </plugin>
     </plugins>
-  </build> 
+  </build>
 
   <profiles>
     <profile>

http://git-wip-us.apache.org/repos/asf/jclouds/blob/3932e8a3/providers/aws-route53/pom.xml
----------------------------------------------------------------------
diff --git a/providers/aws-route53/pom.xml b/providers/aws-route53/pom.xml
index 744f260..d439144 100644
--- a/providers/aws-route53/pom.xml
+++ b/providers/aws-route53/pom.xml
@@ -32,6 +32,8 @@
   <packaging>bundle</packaging>
 
   <properties>
+    <test.aws.identity>FIXME_IDENTITY</test.aws.identity>
+    <test.aws.credential>FIXME_CREDENTIAL</test.aws.credential>
     
<test.aws-route53.endpoint>https://route53.amazonaws.com</test.aws-route53.endpoint>
     <test.aws-route53.api-version>2012-02-29</test.aws-route53.api-version>
     <test.aws-route53.build-version />

http://git-wip-us.apache.org/repos/asf/jclouds/blob/3932e8a3/providers/aws-s3/pom.xml
----------------------------------------------------------------------
diff --git a/providers/aws-s3/pom.xml b/providers/aws-s3/pom.xml
index 69c5e2a..beae5b3 100644
--- a/providers/aws-s3/pom.xml
+++ b/providers/aws-s3/pom.xml
@@ -32,6 +32,8 @@
   <packaging>bundle</packaging>
 
   <properties>
+    <test.aws.identity>FIXME_IDENTITY</test.aws.identity>
+    <test.aws.credential>FIXME_CREDENTIAL</test.aws.credential>
     
<test.initializer>org.jclouds.aws.s3.blobstore.integration.AWSS3TestInitializer</test.initializer>
     <test.aws-s3.endpoint>https://s3.amazonaws.com</test.aws-s3.endpoint>
     <test.aws-s3.api-version>2006-03-01</test.aws-s3.api-version>

http://git-wip-us.apache.org/repos/asf/jclouds/blob/3932e8a3/providers/aws-sqs/pom.xml
----------------------------------------------------------------------
diff --git a/providers/aws-sqs/pom.xml b/providers/aws-sqs/pom.xml
index 6c744f2..959db58 100644
--- a/providers/aws-sqs/pom.xml
+++ b/providers/aws-sqs/pom.xml
@@ -32,6 +32,8 @@
   <packaging>bundle</packaging>
 
   <properties>
+    <test.aws.identity>FIXME_IDENTITY</test.aws.identity>
+    <test.aws.credential>FIXME_CREDENTIAL</test.aws.credential>
     
<test.aws-sqs.endpoint>https://sqs.us-east-1.amazonaws.com</test.aws-sqs.endpoint>
     <test.aws-sqs.api-version>2011-10-01</test.aws-sqs.api-version>
     <test.aws-sqs.build-version />

http://git-wip-us.apache.org/repos/asf/jclouds/blob/3932e8a3/providers/aws-sts/pom.xml
----------------------------------------------------------------------
diff --git a/providers/aws-sts/pom.xml b/providers/aws-sts/pom.xml
index 12414f5..876b468 100644
--- a/providers/aws-sts/pom.xml
+++ b/providers/aws-sts/pom.xml
@@ -32,6 +32,8 @@
   <packaging>bundle</packaging>
 
   <properties>
+    <test.aws.identity>FIXME_IDENTITY</test.aws.identity>
+    <test.aws.credential>FIXME_CREDENTIAL</test.aws.credential>
     <test.aws-sts.endpoint>https://sts.amazonaws.com</test.aws-sts.endpoint>
     <test.aws-sts.api-version>2011-06-15</test.aws-sts.api-version>
     <test.aws-sts.build-version />

Reply via email to