You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by ab...@apache.org on 2013/05/13 22:11:50 UTC

[1/4] git commit: JCLOUDS-28. Add rat check to POM.

Updated Branches:
  refs/heads/1.5.x 5373c7550 -> cc312ad4f


JCLOUDS-28. Add rat check to POM.


Project: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/commit/83ddfb46
Tree: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/tree/83ddfb46
Diff: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/diff/83ddfb46

Branch: refs/heads/1.5.x
Commit: 83ddfb46bffb6d471d8c56845e0799a7f9685a74
Parents: 5373c75
Author: Andrew Bayer <an...@gmail.com>
Authored: Fri May 10 15:50:18 2013 -0700
Committer: Andrew Bayer <an...@gmail.com>
Committed: Mon May 13 12:11:39 2013 -0700

----------------------------------------------------------------------
 pom.xml |   41 +++++++++++++++++++++++++++++++++++++++--
 1 files changed, 39 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/83ddfb46/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d47af97..2ef775e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -18,7 +18,7 @@
     specific language governing permissions and limitations
     under the License.
 
--->
+    -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
     <parent>
@@ -42,6 +42,43 @@
   <build>
     <plugins>
       <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <version>0.8</version>
+        <inherited>false</inherited>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <excludes>
+            <exclude>**/BUILD.txt</exclude>
+            <exclude>**/CHANGES.txt</exclude>
+            <exclude>**/NOTICE-src.txt</exclude>
+            <exclude>**/README.md</exclude>
+            <exclude>.git/**</exclude>
+            <exclude>**/.gitignore</exclude>
+            <exclude>**/*.json</exclude>
+            <exclude>**/*.log*</exclude>
+            <exclude>**/TODO</exclude>
+            <exclude>.mailmap</exclude>
+            <exclude>.idea/**</exclude>
+            <exclude>**/*.iml</exclude>
+            <exclude>**/.project</exclude>
+            <exclude>**/.classpath</exclude>
+            <exclude>**/.settings/**</exclude>
+            <exclude>**/.checkstyle</exclude>
+            <exclude>**/target/**</exclude>
+            <exclude>.repository/**</exclude>
+            <!-- binary -->
+          </excludes>
+        </configuration>
+      </plugin>
+      <plugin>
         <groupId>com.mycila.maven-license-plugin</groupId>
         <artifactId>maven-license-plugin</artifactId>
         <version>1.9.0</version>
@@ -51,7 +88,7 @@
           <aggregate>true</aggregate>
           <header>project/src/etc/header.txt</header>
           <mapping>
-              <clj>SEMICOLON_STYLE</clj>
+            <clj>SEMICOLON_STYLE</clj>
           </mapping>
           <excludes>
             <exclude>**/src/**/resources/**</exclude>


[4/4] git commit: JCLOUDS-17. Fixing parent POM.

Posted by ab...@apache.org.
JCLOUDS-17. Fixing parent POM.


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

Branch: refs/heads/1.5.x
Commit: cc312ad4ffc9c38e79985ed9394c801fb3c1b706
Parents: 7d6aa39
Author: Andrew Bayer <an...@gmail.com>
Authored: Mon May 13 12:27:32 2013 -0700
Committer: Andrew Bayer <an...@gmail.com>
Committed: Mon May 13 12:27:41 2013 -0700

----------------------------------------------------------------------
 project/pom.xml |   16 +++++++++++++---
 1 files changed, 13 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/cc312ad4/project/pom.xml
----------------------------------------------------------------------
diff --git a/project/pom.xml b/project/pom.xml
index cfa7fd7..d14661d 100644
--- a/project/pom.xml
+++ b/project/pom.xml
@@ -22,9 +22,9 @@ under the License.
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
-    <groupId>org.sonatype.oss</groupId>
-    <artifactId>oss-parent</artifactId>
-    <version>4</version>
+    <groupId>org.apache</groupId>
+    <artifactId>apache</artifactId>
+    <version>13</version>
   </parent>
   <groupId>org.apache.jclouds.chef</groupId>
   <artifactId>chef-parent</artifactId>
@@ -54,6 +54,16 @@ under the License.
   </scm>
   <repositories>
     <repository>
+      <id>apache-snapshots</id>
+      <url>https://repository.apache.org/content/repositories/snapshots</url>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+    <repository>
       <id>sonatype-nexus-snapshots</id>
       <url>https://oss.sonatype.org/content/repositories/snapshots</url>
       <releases>


[2/4] git commit: JCLOUDS-17. Switch groupId to org.apache.jclouds, change parent POM, remove old distributionManagement content, add ASF repos.

Posted by ab...@apache.org.
JCLOUDS-17. Switch groupId to org.apache.jclouds, change parent POM, remove old distributionManagement content, add ASF repos.


Project: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/commit/19dc4d0c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/tree/19dc4d0c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/diff/19dc4d0c

Branch: refs/heads/1.5.x
Commit: 19dc4d0c397f1220ddad393f76a172e3f34098eb
Parents: 83ddfb4
Author: Andrew Bayer <an...@gmail.com>
Authored: Mon May 13 12:12:12 2013 -0700
Committer: Andrew Bayer <an...@gmail.com>
Committed: Mon May 13 12:12:12 2013 -0700

----------------------------------------------------------------------
 compute/pom.xml          |   18 +++++++++---------
 core/pom.xml             |   14 +++++++-------
 demos/gae/pom.xml        |    6 +++---
 labs/hostedchef/pom.xml  |   16 ++++++++--------
 labs/pom.xml             |    4 ++--
 labs/privatechef/pom.xml |   14 +++++++-------
 pom.xml                  |    2 +-
 project/pom.xml          |    2 +-
 servlet/pom.xml          |    6 +++---
 9 files changed, 41 insertions(+), 41 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/19dc4d0c/compute/pom.xml
----------------------------------------------------------------------
diff --git a/compute/pom.xml b/compute/pom.xml
index c7ad75f..1e11325 100644
--- a/compute/pom.xml
+++ b/compute/pom.xml
@@ -22,7 +22,7 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
-        <groupId>org.jclouds.chef</groupId>
+        <groupId>org.apache.jclouds.chef</groupId>
         <artifactId>chef-parent</artifactId>
         <version>1.5.11-SNAPSHOT</version>
         <relativePath>../project/pom.xml</relativePath>
@@ -47,54 +47,54 @@
 
     <dependencies>
         <dependency>
-            <groupId>org.jclouds.api</groupId>
+            <groupId>org.apache.jclouds.api</groupId>
             <artifactId>chef</artifactId>
             <version>${project.version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.jclouds.api</groupId>
+            <groupId>org.apache.jclouds.api</groupId>
             <artifactId>chef</artifactId>
             <version>${project.version}</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.jclouds</groupId>
+            <groupId>org.apache.jclouds</groupId>
             <artifactId>jclouds-compute</artifactId>
             <version>1.5.11-SNAPSHOT</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.jclouds</groupId>
+            <groupId>org.apache.jclouds</groupId>
             <artifactId>jclouds-core</artifactId>
             <version>1.5.11-SNAPSHOT</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.jclouds</groupId>
+            <groupId>org.apache.jclouds</groupId>
             <artifactId>jclouds-compute</artifactId>
             <version>1.5.11-SNAPSHOT</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.jclouds</groupId>
+            <groupId>org.apache.jclouds</groupId>
             <artifactId>jclouds-allcompute</artifactId>
             <version>1.5.11-SNAPSHOT</version>
             <scope>test</scope>
             <optional>true</optional>
         </dependency>
         <dependency>           
-            <groupId>org.jclouds.driver</groupId>
+            <groupId>org.apache.jclouds.driver</groupId>
             <artifactId>jclouds-slf4j</artifactId>
             <version>1.5.11-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.jclouds.driver</groupId>
+            <groupId>org.apache.jclouds.driver</groupId>
             <artifactId>jclouds-sshj</artifactId>
             <version>1.5.11-SNAPSHOT</version>
             <scope>test</scope>

http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/19dc4d0c/core/pom.xml
----------------------------------------------------------------------
diff --git a/core/pom.xml b/core/pom.xml
index 7a82181..3f37e55 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -22,12 +22,12 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
-        <groupId>org.jclouds.chef</groupId>
+        <groupId>org.apache.jclouds.chef</groupId>
         <artifactId>chef-parent</artifactId>
         <version>1.5.11-SNAPSHOT</version>
         <relativePath>../project/pom.xml</relativePath>
     </parent>
-    <groupId>org.jclouds.api</groupId>
+    <groupId>org.apache.jclouds.api</groupId>
     <artifactId>chef</artifactId>
     <packaging>bundle</packaging>
     <name>JClouds Chef :: Core</name>
@@ -54,31 +54,31 @@
 
     <dependencies>
         <dependency>
-            <groupId>org.jclouds</groupId>
+            <groupId>org.apache.jclouds</groupId>
             <artifactId>jclouds-core</artifactId>
             <version>1.5.11-SNAPSHOT</version>
         </dependency>
         <dependency>
-            <groupId>org.jclouds</groupId>
+            <groupId>org.apache.jclouds</groupId>
             <artifactId>jclouds-core</artifactId>
             <version>1.5.11-SNAPSHOT</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.jclouds</groupId>
+            <groupId>org.apache.jclouds</groupId>
             <artifactId>jclouds-scriptbuilder</artifactId>
             <version>1.5.11-SNAPSHOT</version>
         </dependency>
         <!--  for transient chef provider -->
         <dependency>
-            <groupId>org.jclouds</groupId>
+            <groupId>org.apache.jclouds</groupId>
             <artifactId>jclouds-blobstore</artifactId>
             <version>1.5.11-SNAPSHOT</version>
             <optional>true</optional>
         </dependency>
         <dependency>
-            <groupId>org.jclouds.driver</groupId>
+            <groupId>org.apache.jclouds.driver</groupId>
             <artifactId>jclouds-slf4j</artifactId>
             <version>1.5.11-SNAPSHOT</version>
             <scope>test</scope>

http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/19dc4d0c/demos/gae/pom.xml
----------------------------------------------------------------------
diff --git a/demos/gae/pom.xml b/demos/gae/pom.xml
index a106474..2171dcf 100644
--- a/demos/gae/pom.xml
+++ b/demos/gae/pom.xml
@@ -58,7 +58,7 @@
 
 	<dependencies>
 		<dependency>
-			<groupId>org.jclouds</groupId>
+			<groupId>org.apache.jclouds</groupId>
 			<artifactId>jclouds-chef-servlet</artifactId>
 			<version>${project.version}</version>
 		</dependency>
@@ -69,7 +69,7 @@
 			<scope>test</scope>
 		</dependency>
 		<dependency>
-			<groupId>org.jclouds</groupId>
+			<groupId>org.apache.jclouds</groupId>
 			<artifactId>jclouds-log4j</artifactId>
 			<version>${project.version}</version>
 			<scope>test</scope>
@@ -88,7 +88,7 @@
 			<classifier>jdk15</classifier>
 		</dependency>
 		<dependency>
-			<groupId>org.jclouds</groupId>
+			<groupId>org.apache.jclouds</groupId>
 			<artifactId>jclouds-gae</artifactId>
 			<version>${project.version}</version>
 		</dependency>

http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/19dc4d0c/labs/hostedchef/pom.xml
----------------------------------------------------------------------
diff --git a/labs/hostedchef/pom.xml b/labs/hostedchef/pom.xml
index 845bf2c..d04f7cd 100644
--- a/labs/hostedchef/pom.xml
+++ b/labs/hostedchef/pom.xml
@@ -22,13 +22,13 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
-        <groupId>org.jclouds.chef</groupId>
+        <groupId>org.apache.jclouds.chef</groupId>
         <artifactId>chef-parent</artifactId>
         <version>1.5.11-SNAPSHOT</version>
         <relativePath>../../project/pom.xml</relativePath>
     </parent>
-    <!-- <groupId>org.jclouds.provider</groupId> -->
-    <groupId>org.jclouds.labs</groupId>
+    <!-- <groupId>org.apache.jclouds.provider</groupId> -->
+    <groupId>org.apache.jclouds.labs</groupId>
     <artifactId>hostedchef</artifactId>
     <name>JClouds Chef :: Hosted Chef</name>
     <description>jclouds components to access Hosted Chef</description>
@@ -48,33 +48,33 @@
 
     <dependencies>
         <dependency>
-            <groupId>org.jclouds.labs</groupId>
+            <groupId>org.apache.jclouds.labs</groupId>
             <artifactId>privatechef</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>
-            <groupId>org.jclouds.labs</groupId>
+            <groupId>org.apache.jclouds.labs</groupId>
             <artifactId>privatechef</artifactId>
             <version>${project.version}</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.jclouds.api</groupId>
+            <groupId>org.apache.jclouds.api</groupId>
             <artifactId>chef</artifactId>
             <version>${project.version}</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.jclouds</groupId>
+            <groupId>org.apache.jclouds</groupId>
             <artifactId>jclouds-core</artifactId>
             <version>1.5.11-SNAPSHOT</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.jclouds.driver</groupId>
+            <groupId>org.apache.jclouds.driver</groupId>
             <artifactId>jclouds-slf4j</artifactId>
             <version>1.5.11-SNAPSHOT</version>
             <scope>test</scope>

http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/19dc4d0c/labs/pom.xml
----------------------------------------------------------------------
diff --git a/labs/pom.xml b/labs/pom.xml
index 1b824d5..f7c1938 100644
--- a/labs/pom.xml
+++ b/labs/pom.xml
@@ -22,12 +22,12 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
-        <groupId>org.jclouds.chef</groupId>
+        <groupId>org.apache.jclouds.chef</groupId>
         <artifactId>chef-parent</artifactId>
         <version>1.5.11-SNAPSHOT</version>
         <relativePath>../project/pom.xml</relativePath>
     </parent>
-    <groupId>org.jclouds.labs</groupId>
+    <groupId>org.apache.jclouds.labs</groupId>
     <artifactId>chef-labs-project</artifactId>
     <packaging>pom</packaging>
     <name>JClouds Chef :: Labs</name>

http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/19dc4d0c/labs/privatechef/pom.xml
----------------------------------------------------------------------
diff --git a/labs/privatechef/pom.xml b/labs/privatechef/pom.xml
index ed0c725..5ec4d09 100644
--- a/labs/privatechef/pom.xml
+++ b/labs/privatechef/pom.xml
@@ -22,13 +22,13 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
-        <groupId>org.jclouds.chef</groupId>
+        <groupId>org.apache.jclouds.chef</groupId>
         <artifactId>chef-parent</artifactId>
         <version>1.5.11-SNAPSHOT</version>
         <relativePath>../../project/pom.xml</relativePath>
     </parent>
-    <!-- <groupId>org.jclouds.api</groupId> -->
-    <groupId>org.jclouds.labs</groupId>
+    <!-- <groupId>org.apache.jclouds.api</groupId> -->
+    <groupId>org.apache.jclouds.labs</groupId>
     <artifactId>privatechef</artifactId>
     <name>JClouds Chef :: Private Chef</name>
     <description>jclouds components to access Private Chef</description>
@@ -49,26 +49,26 @@
 
     <dependencies>
         <dependency>
-            <groupId>org.jclouds.api</groupId>
+            <groupId>org.apache.jclouds.api</groupId>
             <artifactId>chef</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>
-            <groupId>org.jclouds.api</groupId>
+            <groupId>org.apache.jclouds.api</groupId>
             <artifactId>chef</artifactId>
             <version>${project.version}</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.jclouds</groupId>
+            <groupId>org.apache.jclouds</groupId>
             <artifactId>jclouds-core</artifactId>
             <version>1.5.11-SNAPSHOT</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.jclouds.driver</groupId>
+            <groupId>org.apache.jclouds.driver</groupId>
             <artifactId>jclouds-slf4j</artifactId>
             <version>1.5.11-SNAPSHOT</version>
             <scope>test</scope>

http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/19dc4d0c/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 2ef775e..96f9c68 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
     <parent>
-        <groupId>org.jclouds.chef</groupId>
+        <groupId>org.apache.jclouds.chef</groupId>
         <artifactId>chef-parent</artifactId>        
         <version>1.5.11-SNAPSHOT</version>
         <relativePath>project/pom.xml</relativePath>

http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/19dc4d0c/project/pom.xml
----------------------------------------------------------------------
diff --git a/project/pom.xml b/project/pom.xml
index c5d9a44..93c9979 100644
--- a/project/pom.xml
+++ b/project/pom.xml
@@ -26,7 +26,7 @@
     <artifactId>oss-parent</artifactId>
     <version>4</version>
   </parent>
-  <groupId>org.jclouds.chef</groupId>
+  <groupId>org.apache.jclouds.chef</groupId>
   <artifactId>chef-parent</artifactId>
   <version>1.5.11-SNAPSHOT</version>
   <packaging>pom</packaging>

http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/19dc4d0c/servlet/pom.xml
----------------------------------------------------------------------
diff --git a/servlet/pom.xml b/servlet/pom.xml
index 5e62f6f..31e93f1 100644
--- a/servlet/pom.xml
+++ b/servlet/pom.xml
@@ -22,7 +22,7 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
-    <groupId>org.jclouds.chef</groupId>
+    <groupId>org.apache.jclouds.chef</groupId>
     <artifactId>chef-parent</artifactId>
     <version>1.5.11-SNAPSHOT</version>
     <relativePath>../project/pom.xml</relativePath>
@@ -45,12 +45,12 @@
 
   <dependencies>
     <dependency>
-      <groupId>org.jclouds.api</groupId>
+      <groupId>org.apache.jclouds.api</groupId>
       <artifactId>chef</artifactId>
       <version>${project.version}</version>
     </dependency>
     <dependency>
-      <groupId>org.jclouds</groupId>
+      <groupId>org.apache.jclouds</groupId>
       <artifactId>jclouds-core</artifactId>
       <version>1.5.11-SNAPSHOT</version>
       <type>test-jar</type>


[3/4] git commit: JCLOUDS-30. Switch to 2 space indents for POM files.

Posted by ab...@apache.org.
JCLOUDS-30. Switch to 2 space indents for POM files.


Project: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/commit/7d6aa392
Tree: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/tree/7d6aa392
Diff: http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/diff/7d6aa392

Branch: refs/heads/1.5.x
Commit: 7d6aa39278549847d4bf5601830a442007bc8c0f
Parents: 19dc4d0
Author: Andrew Bayer <an...@gmail.com>
Authored: Mon May 13 12:12:34 2013 -0700
Committer: Andrew Bayer <an...@gmail.com>
Committed: Mon May 13 12:12:34 2013 -0700

----------------------------------------------------------------------
 compute/pom.xml          |  274 +++++++++++-----------
 core/pom.xml             |  228 +++++++++---------
 demos/gae/pom.xml        |  522 ++++++++++++++++++++--------------------
 labs/hostedchef/pom.xml  |  220 +++++++++---------
 labs/pom.xml             |   58 +++---
 labs/privatechef/pom.xml |  206 ++++++++--------
 pom.xml                  |   42 ++--
 project/pom.xml          |  140 ++++++------
 servlet/pom.xml          |   28 +-
 9 files changed, 859 insertions(+), 859 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/7d6aa392/compute/pom.xml
----------------------------------------------------------------------
diff --git a/compute/pom.xml b/compute/pom.xml
index 1e11325..a2a1be5 100644
--- a/compute/pom.xml
+++ b/compute/pom.xml
@@ -1,149 +1,149 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Licensed to jclouds, Inc. (jclouds) under one or more
-    contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  jclouds licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
+Licensed to jclouds, Inc. (jclouds) under one or more
+contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  jclouds licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
 
-      http://www.apache.org/licenses/LICENSE-2.0
+http://www.apache.org/licenses/LICENSE-2.0
 
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
 
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.jclouds.chef</groupId>
-        <artifactId>chef-parent</artifactId>
-        <version>1.5.11-SNAPSHOT</version>
-        <relativePath>../project/pom.xml</relativePath>
-    </parent>
-    <artifactId>chef-compute</artifactId>
-    <name>JClouds Chef :: Compute</name>
-    <description>provisions nodes with jclouds and kick's off chef to configure and integrate</description>
-    <properties>
-        <test.chef.endpoint>http://localhost:4000</test.chef.endpoint>
-        <test.chef.api-version />
-        <test.chef.build-version />
-        <test.chef.identity>chef-validator</test.chef.identity>
-        <test.chef.credential>${user.home}/.chef/validation.pem</test.chef.credential>
-        <test.chef.compute.provider>aws-ec2</test.chef.compute.provider>
-        <test.chef.compute.endpoint>https://ec2.us-east-1.amazonaws.com</test.chef.compute.endpoint>
-        <test.chef.compute.api-version>2010-06-15</test.chef.compute.api-version>
-        <test.chef.compute.build-version />
-        <test.chef.compute.identity>${test.aws.identity}</test.chef.compute.identity>
-        <test.chef.compute.credential>${test.aws.credential}</test.chef.compute.credential>
-        <test.chef.compute.template />
-    </properties>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.jclouds.chef</groupId>
+    <artifactId>chef-parent</artifactId>
+    <version>1.5.11-SNAPSHOT</version>
+    <relativePath>../project/pom.xml</relativePath>
+  </parent>
+  <artifactId>chef-compute</artifactId>
+  <name>JClouds Chef :: Compute</name>
+  <description>provisions nodes with jclouds and kick's off chef to configure and integrate</description>
+  <properties>
+    <test.chef.endpoint>http://localhost:4000</test.chef.endpoint>
+    <test.chef.api-version />
+    <test.chef.build-version />
+    <test.chef.identity>chef-validator</test.chef.identity>
+    <test.chef.credential>${user.home}/.chef/validation.pem</test.chef.credential>
+    <test.chef.compute.provider>aws-ec2</test.chef.compute.provider>
+    <test.chef.compute.endpoint>https://ec2.us-east-1.amazonaws.com</test.chef.compute.endpoint>
+    <test.chef.compute.api-version>2010-06-15</test.chef.compute.api-version>
+    <test.chef.compute.build-version />
+    <test.chef.compute.identity>${test.aws.identity}</test.chef.compute.identity>
+    <test.chef.compute.credential>${test.aws.credential}</test.chef.compute.credential>
+    <test.chef.compute.template />
+  </properties>
 
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.jclouds.api</groupId>
-            <artifactId>chef</artifactId>
-            <version>${project.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jclouds.api</groupId>
-            <artifactId>chef</artifactId>
-            <version>${project.version}</version>
-            <type>test-jar</type>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jclouds</groupId>
-            <artifactId>jclouds-compute</artifactId>
-            <version>1.5.11-SNAPSHOT</version>
-            <type>test-jar</type>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jclouds</groupId>
-            <artifactId>jclouds-core</artifactId>
-            <version>1.5.11-SNAPSHOT</version>
-            <type>test-jar</type>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jclouds</groupId>
-            <artifactId>jclouds-compute</artifactId>
-            <version>1.5.11-SNAPSHOT</version>
-            <type>test-jar</type>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jclouds</groupId>
-            <artifactId>jclouds-allcompute</artifactId>
-            <version>1.5.11-SNAPSHOT</version>
-            <scope>test</scope>
-            <optional>true</optional>
-        </dependency>
-        <dependency>           
-            <groupId>org.apache.jclouds.driver</groupId>
-            <artifactId>jclouds-slf4j</artifactId>
-            <version>1.5.11-SNAPSHOT</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jclouds.driver</groupId>
-            <artifactId>jclouds-sshj</artifactId>
-            <version>1.5.11-SNAPSHOT</version>
-            <scope>test</scope>
-        </dependency>   
-        <dependency>        
-            <groupId>ch.qos.logback</groupId>
-            <artifactId>logback-classic</artifactId>
-            <version>1.0.0</version>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.jclouds.api</groupId>
+      <artifactId>chef</artifactId>
+      <version>${project.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds.api</groupId>
+      <artifactId>chef</artifactId>
+      <version>${project.version}</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds</groupId>
+      <artifactId>jclouds-compute</artifactId>
+      <version>1.5.11-SNAPSHOT</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds</groupId>
+      <artifactId>jclouds-core</artifactId>
+      <version>1.5.11-SNAPSHOT</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds</groupId>
+      <artifactId>jclouds-compute</artifactId>
+      <version>1.5.11-SNAPSHOT</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds</groupId>
+      <artifactId>jclouds-allcompute</artifactId>
+      <version>1.5.11-SNAPSHOT</version>
+      <scope>test</scope>
+      <optional>true</optional>
+    </dependency>
+    <dependency>           
+      <groupId>org.apache.jclouds.driver</groupId>
+      <artifactId>jclouds-slf4j</artifactId>
+      <version>1.5.11-SNAPSHOT</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds.driver</groupId>
+      <artifactId>jclouds-sshj</artifactId>
+      <version>1.5.11-SNAPSHOT</version>
+      <scope>test</scope>
+    </dependency>   
+    <dependency>        
+      <groupId>ch.qos.logback</groupId>
+      <artifactId>logback-classic</artifactId>
+      <version>1.0.0</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
 
-    <profiles>
-        <profile>
-            <id>live</id>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-surefire-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <id>integration</id>
-                                <phase>integration-test</phase>
-                                <goals>
-                                    <goal>test</goal>
-                                </goals>
-                                <configuration>
-                                    <systemPropertyVariables>
-                                        <test.chef.endpoint>${test.chef.endpoint}</test.chef.endpoint>
-                                        <test.chef.api-version>${test.chef.api-version}</test.chef.api-version>
-                                        <test.chef.build-version>${test.chef.build-version}</test.chef.build-version>
-                                        <test.chef.identity>${test.chef.identity}</test.chef.identity>
-                                        <test.chef.credential>${test.chef.credential}</test.chef.credential>
-                                        <test.chef.compute.provider>${test.chef.compute.provider}</test.chef.compute.provider>
-                                        <test.chef.compute.endpoint>${test.chef.compute.endpoint}</test.chef.compute.endpoint>
-                                        <test.chef.compute.build-version>${test.chef.compute.build-version}</test.chef.compute.build-version>
-                                        <test.chef.compute.api-version>${test.chef.compute.api-version}</test.chef.compute.api-version>
-                                        <test.chef.compute.identity>${test.chef.compute.identity}</test.chef.compute.identity>
-                                        <test.chef.compute.credential>${test.chef.compute.credential}</test.chef.compute.credential>
-                                        <test.chef.compute.template>${test.chef.compute.template}</test.chef.compute.template>
-                                    </systemPropertyVariables>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
+  <profiles>
+    <profile>
+      <id>live</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>integration</id>
+                <phase>integration-test</phase>
+                <goals>
+                  <goal>test</goal>
+                </goals>
+                <configuration>
+                  <systemPropertyVariables>
+                    <test.chef.endpoint>${test.chef.endpoint}</test.chef.endpoint>
+                    <test.chef.api-version>${test.chef.api-version}</test.chef.api-version>
+                    <test.chef.build-version>${test.chef.build-version}</test.chef.build-version>
+                    <test.chef.identity>${test.chef.identity}</test.chef.identity>
+                    <test.chef.credential>${test.chef.credential}</test.chef.credential>
+                    <test.chef.compute.provider>${test.chef.compute.provider}</test.chef.compute.provider>
+                    <test.chef.compute.endpoint>${test.chef.compute.endpoint}</test.chef.compute.endpoint>
+                    <test.chef.compute.build-version>${test.chef.compute.build-version}</test.chef.compute.build-version>
+                    <test.chef.compute.api-version>${test.chef.compute.api-version}</test.chef.compute.api-version>
+                    <test.chef.compute.identity>${test.chef.compute.identity}</test.chef.compute.identity>
+                    <test.chef.compute.credential>${test.chef.compute.credential}</test.chef.compute.credential>
+                    <test.chef.compute.template>${test.chef.compute.template}</test.chef.compute.template>
+                  </systemPropertyVariables>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/7d6aa392/core/pom.xml
----------------------------------------------------------------------
diff --git a/core/pom.xml b/core/pom.xml
index 3f37e55..ebaadfe 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -1,126 +1,126 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Licensed to jclouds, Inc. (jclouds) under one or more
-    contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  jclouds licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
+Licensed to jclouds, Inc. (jclouds) under one or more
+contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  jclouds licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
 
-      http://www.apache.org/licenses/LICENSE-2.0
+http://www.apache.org/licenses/LICENSE-2.0
 
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
 
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.jclouds.chef</groupId>
-        <artifactId>chef-parent</artifactId>
-        <version>1.5.11-SNAPSHOT</version>
-        <relativePath>../project/pom.xml</relativePath>
-    </parent>
-    <groupId>org.apache.jclouds.api</groupId>
-    <artifactId>chef</artifactId>
-    <packaging>bundle</packaging>
-    <name>JClouds Chef :: Core</name>
-    <description>jclouds components to access Chef</description>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.jclouds.chef</groupId>
+    <artifactId>chef-parent</artifactId>
+    <version>1.5.11-SNAPSHOT</version>
+    <relativePath>../project/pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.jclouds.api</groupId>
+  <artifactId>chef</artifactId>
+  <packaging>bundle</packaging>
+  <name>JClouds Chef :: Core</name>
+  <description>jclouds components to access Chef</description>
 
-    <properties>
-        <test.chef.endpoint>http://localhost:4000</test.chef.endpoint>
-        <test.chef.api-version />
-        <test.chef.build-version />
-        <test.chef.identity>chef-webui</test.chef.identity>
-        <test.chef.credential>${user.home}/.chef/webui.pem</test.chef.credential>
-        <test.chef.validator.identity>chef-validator</test.chef.validator.identity>
-        <test.chef.validator.credential>${user.home}/.chef/validation.pem</test.chef.validator.credential>
-        <jclouds.osgi.import>
-          org.jclouds;version=${project.version},
-          org.jclouds*;version=${project.version},
-          *
-        </jclouds.osgi.import>
-        <jclouds.osgi.export>
-          org.jclouds.chef*;version=${project.version};-noimport:=true,
-          org.jclouds.ohai*;version=${project.version};-noimport:=true,
-        </jclouds.osgi.export>
-    </properties>
+  <properties>
+    <test.chef.endpoint>http://localhost:4000</test.chef.endpoint>
+    <test.chef.api-version />
+    <test.chef.build-version />
+    <test.chef.identity>chef-webui</test.chef.identity>
+    <test.chef.credential>${user.home}/.chef/webui.pem</test.chef.credential>
+    <test.chef.validator.identity>chef-validator</test.chef.validator.identity>
+    <test.chef.validator.credential>${user.home}/.chef/validation.pem</test.chef.validator.credential>
+    <jclouds.osgi.import>
+      org.jclouds;version=${project.version},
+      org.jclouds*;version=${project.version},
+      *
+    </jclouds.osgi.import>
+    <jclouds.osgi.export>
+      org.jclouds.chef*;version=${project.version};-noimport:=true,
+      org.jclouds.ohai*;version=${project.version};-noimport:=true,
+    </jclouds.osgi.export>
+  </properties>
 
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.jclouds</groupId>
-            <artifactId>jclouds-core</artifactId>
-            <version>1.5.11-SNAPSHOT</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jclouds</groupId>
-            <artifactId>jclouds-core</artifactId>
-            <version>1.5.11-SNAPSHOT</version>
-            <type>test-jar</type>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jclouds</groupId>
-            <artifactId>jclouds-scriptbuilder</artifactId>
-            <version>1.5.11-SNAPSHOT</version>
-        </dependency>
-        <!--  for transient chef provider -->
-        <dependency>
-            <groupId>org.apache.jclouds</groupId>
-            <artifactId>jclouds-blobstore</artifactId>
-            <version>1.5.11-SNAPSHOT</version>
-            <optional>true</optional>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jclouds.driver</groupId>
-            <artifactId>jclouds-slf4j</artifactId>
-            <version>1.5.11-SNAPSHOT</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>ch.qos.logback</groupId>
-            <artifactId>logback-classic</artifactId>
-            <version>1.0.0</version>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.jclouds</groupId>
+      <artifactId>jclouds-core</artifactId>
+      <version>1.5.11-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds</groupId>
+      <artifactId>jclouds-core</artifactId>
+      <version>1.5.11-SNAPSHOT</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds</groupId>
+      <artifactId>jclouds-scriptbuilder</artifactId>
+      <version>1.5.11-SNAPSHOT</version>
+    </dependency>
+    <!--  for transient chef provider -->
+    <dependency>
+      <groupId>org.apache.jclouds</groupId>
+      <artifactId>jclouds-blobstore</artifactId>
+      <version>1.5.11-SNAPSHOT</version>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds.driver</groupId>
+      <artifactId>jclouds-slf4j</artifactId>
+      <version>1.5.11-SNAPSHOT</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>ch.qos.logback</groupId>
+      <artifactId>logback-classic</artifactId>
+      <version>1.0.0</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
 
-    <profiles>
-        <profile>
-            <id>live</id>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-surefire-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <id>integration</id>
-                                <phase>integration-test</phase>
-                                <goals>
-                                    <goal>test</goal>
-                                </goals>
-                                <configuration>
-                                    <systemPropertyVariables>
-                                        <test.chef.endpoint>${test.chef.endpoint}</test.chef.endpoint>
-                                        <test.chef.api-version>${test.chef.api-version}</test.chef.api-version>
-                                        <test.chef.build-version>${test.chef.build-version}</test.chef.build-version>
-                                        <test.chef.identity>${test.chef.identity}</test.chef.identity>
-                                        <test.chef.validator.identity>${test.chef.validator.identity}</test.chef.validator.identity>
-                                        <test.chef.validator.credential>${test.chef.validator.credential}</test.chef.validator.credential>
-                                    </systemPropertyVariables>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
+  <profiles>
+    <profile>
+      <id>live</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>integration</id>
+                <phase>integration-test</phase>
+                <goals>
+                  <goal>test</goal>
+                </goals>
+                <configuration>
+                  <systemPropertyVariables>
+                    <test.chef.endpoint>${test.chef.endpoint}</test.chef.endpoint>
+                    <test.chef.api-version>${test.chef.api-version}</test.chef.api-version>
+                    <test.chef.build-version>${test.chef.build-version}</test.chef.build-version>
+                    <test.chef.identity>${test.chef.identity}</test.chef.identity>
+                    <test.chef.validator.identity>${test.chef.validator.identity}</test.chef.validator.identity>
+                    <test.chef.validator.credential>${test.chef.validator.credential}</test.chef.validator.credential>
+                  </systemPropertyVariables>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/7d6aa392/demos/gae/pom.xml
----------------------------------------------------------------------
diff --git a/demos/gae/pom.xml b/demos/gae/pom.xml
index 2171dcf..6678711 100644
--- a/demos/gae/pom.xml
+++ b/demos/gae/pom.xml
@@ -1,275 +1,275 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Licensed to jclouds, Inc. (jclouds) under one or more
-    contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  jclouds licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
+Licensed to jclouds, Inc. (jclouds) under one or more
+contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  jclouds licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
 
-      http://www.apache.org/licenses/LICENSE-2.0
+http://www.apache.org/licenses/LICENSE-2.0
 
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
 
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-	<modelVersion>4.0.0</modelVersion>
-	<artifactId>jclouds-chef-demo-googleappengine</artifactId>
-	<groupId>jclouds</groupId>
-	<version>1.5.0-SNAPSHOT</version>
-	<packaging>war</packaging>
-	<name>JClouds Sample for Google App Engine</name>
-	<description>JClouds Sample for Google App Engine</description>
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>jclouds-chef-demo-googleappengine</artifactId>
+  <groupId>jclouds</groupId>
+  <version>1.5.0-SNAPSHOT</version>
+  <packaging>war</packaging>
+  <name>JClouds Sample for Google App Engine</name>
+  <description>JClouds Sample for Google App Engine</description>
 
-	<properties>
-		<!--
-			note you must set the property ${appengine.home} to a valid
-			extraction of appengine-java-sdk
-		-->
-		<maven.compile.source>1.6</maven.compile.source>
-		<maven.compile.target>1.6</maven.compile.target>
-		<appengine.home>${env.APPENGINE_HOME}</appengine.home>
-		<appengine.applicationid>YOUR_APPLICATION_ID</appengine.applicationid>
-		<devappserver.address>localhost</devappserver.address>
-		<devappserver.port>8088</devappserver.port>
-		<jclouds.chef.identity>${appengine.applicationid}</jclouds.chef.identity>
-		<jclouds.chef.identity.pem>${user.home}/.chef/${jclouds.chef.identity}.pem</jclouds.chef.identity.pem>
-		<jclouds.opscodeplatform.org>YOUR_ORG</jclouds.opscodeplatform.org>
-		<jclouds.chef.endpoint>https://api.opscode.com/organizations/${jclouds.opscodeplatform.org}</jclouds.chef.endpoint>
-	</properties>
+  <properties>
+    <!--
+        note you must set the property ${appengine.home} to a valid
+        extraction of appengine-java-sdk
+    -->
+    <maven.compile.source>1.6</maven.compile.source>
+    <maven.compile.target>1.6</maven.compile.target>
+    <appengine.home>${env.APPENGINE_HOME}</appengine.home>
+    <appengine.applicationid>YOUR_APPLICATION_ID</appengine.applicationid>
+    <devappserver.address>localhost</devappserver.address>
+    <devappserver.port>8088</devappserver.port>
+    <jclouds.chef.identity>${appengine.applicationid}</jclouds.chef.identity>
+    <jclouds.chef.identity.pem>${user.home}/.chef/${jclouds.chef.identity}.pem</jclouds.chef.identity.pem>
+    <jclouds.opscodeplatform.org>YOUR_ORG</jclouds.opscodeplatform.org>
+    <jclouds.chef.endpoint>https://api.opscode.com/organizations/${jclouds.opscodeplatform.org}</jclouds.chef.endpoint>
+  </properties>
 
-	<repositories>
-		<repository>
-			<id>jclouds-gae-depedencies</id>
-			<url>http://jclouds.googlecode.com/svn/repo</url>
-			<snapshots>
-				<enabled>false</enabled>
-			</snapshots>
-		</repository>
-	</repositories>
+  <repositories>
+    <repository>
+      <id>jclouds-gae-depedencies</id>
+      <url>http://jclouds.googlecode.com/svn/repo</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
 
-	<dependencies>
-		<dependency>
-			<groupId>org.apache.jclouds</groupId>
-			<artifactId>jclouds-chef-servlet</artifactId>
-			<version>${project.version}</version>
-		</dependency>
-		<dependency>
-			<groupId>org.easymock</groupId>
-			<artifactId>easymockclassextension</artifactId>
-			<version>2.4</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.jclouds</groupId>
-			<artifactId>jclouds-log4j</artifactId>
-			<version>${project.version}</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>log4j</groupId>
-			<artifactId>log4j</artifactId>
-			<version>1.2.14</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.testng</groupId>
-			<artifactId>testng</artifactId>
-			<version>5.10</version>
-			<scope>test</scope>
-			<classifier>jdk15</classifier>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.jclouds</groupId>
-			<artifactId>jclouds-gae</artifactId>
-			<version>${project.version}</version>
-		</dependency>
-		<dependency>
-			<groupId>com.google.code.guice</groupId>
-			<artifactId>guice-servlet</artifactId>
-			<version>2.1-r1201</version>
-		</dependency>
-		<dependency>
-			<groupId>displaytag</groupId>
-			<artifactId>displaytag</artifactId>
-			<version>1.2</version>
-			<exclusions>
-				<exclusion>
-					<groupId>org.slf4j</groupId>
-					<artifactId>slf4j-log4j12</artifactId>
-				</exclusion>
-			</exclusions>
-		</dependency>
-		<dependency>
-			<groupId>org.slf4j</groupId>
-			<artifactId>slf4j-jdk14</artifactId>
-			<version>1.5.6</version>
-		</dependency>
-		<dependency>
-			<artifactId>standard</artifactId>
-			<groupId>taglibs</groupId>
-			<version>1.1.2</version>
-			<scope>runtime</scope>
-		</dependency>
-		<dependency>
-			<artifactId>jstl</artifactId>
-			<groupId>javax.servlet</groupId>
-			<version>1.1.2</version>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-el_1.0_spec</artifactId>
-			<version>1.0.1</version>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-jsp_2.1_spec</artifactId>
-			<version>1.0.1</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-servlet_2.5_spec</artifactId>
-			<version>1.2</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>com.google.appengine</groupId>
-			<artifactId>appengine-api-labs</artifactId>
-			<version>1.3.5</version>
-		</dependency>
-		<dependency>
-			<groupId>com.google.appengine</groupId>
-			<artifactId>appengine-tools-api</artifactId>
-			<version>1.3.5</version>
-			<scope>system</scope>
-			<systemPath>${appengine.home}/lib/appengine-tools-api.jar</systemPath>
-		</dependency>
-	</dependencies>
-	<build>
-		<finalName>${project.artifactId}</finalName>
-		<plugins>
-			<plugin>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<configuration>
-					<encoding>${sourceEncoding}</encoding>
-					<source>${maven.compile.source}</source>
-					<target>${maven.compile.target}</target>
-				</configuration>
-			</plugin>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.jclouds</groupId>
+      <artifactId>jclouds-chef-servlet</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.easymock</groupId>
+      <artifactId>easymockclassextension</artifactId>
+      <version>2.4</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds</groupId>
+      <artifactId>jclouds-log4j</artifactId>
+      <version>${project.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>1.2.14</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.testng</groupId>
+      <artifactId>testng</artifactId>
+      <version>5.10</version>
+      <scope>test</scope>
+      <classifier>jdk15</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds</groupId>
+      <artifactId>jclouds-gae</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.google.code.guice</groupId>
+      <artifactId>guice-servlet</artifactId>
+      <version>2.1-r1201</version>
+    </dependency>
+    <dependency>
+      <groupId>displaytag</groupId>
+      <artifactId>displaytag</artifactId>
+      <version>1.2</version>
+      <exclusions>
+        <exclusion>
+          <groupId>org.slf4j</groupId>
+          <artifactId>slf4j-log4j12</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-jdk14</artifactId>
+      <version>1.5.6</version>
+    </dependency>
+    <dependency>
+      <artifactId>standard</artifactId>
+      <groupId>taglibs</groupId>
+      <version>1.1.2</version>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <artifactId>jstl</artifactId>
+      <groupId>javax.servlet</groupId>
+      <version>1.1.2</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.geronimo.specs</groupId>
+      <artifactId>geronimo-el_1.0_spec</artifactId>
+      <version>1.0.1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.geronimo.specs</groupId>
+      <artifactId>geronimo-jsp_2.1_spec</artifactId>
+      <version>1.0.1</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.geronimo.specs</groupId>
+      <artifactId>geronimo-servlet_2.5_spec</artifactId>
+      <version>1.2</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.appengine</groupId>
+      <artifactId>appengine-api-labs</artifactId>
+      <version>1.3.5</version>
+    </dependency>
+    <dependency>
+      <groupId>com.google.appengine</groupId>
+      <artifactId>appengine-tools-api</artifactId>
+      <version>1.3.5</version>
+      <scope>system</scope>
+      <systemPath>${appengine.home}/lib/appengine-tools-api.jar</systemPath>
+    </dependency>
+  </dependencies>
+  <build>
+    <finalName>${project.artifactId}</finalName>
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <encoding>${sourceEncoding}</encoding>
+          <source>${maven.compile.source}</source>
+          <target>${maven.compile.target}</target>
+        </configuration>
+      </plugin>
 
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-war-plugin</artifactId>
-				<configuration>
-					<webResources>
-						<resource>
-							<directory>src/main/appengine</directory>
-							<targetPath>WEB-INF/</targetPath>
-							<filtering>true</filtering>
-						</resource>
-					</webResources>
-				</configuration>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-surefire-plugin</artifactId>
-				<configuration>
-					<excludes>
-						<exclude>**/*LiveTest.java</exclude>
-					</excludes>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-war-plugin</artifactId>
+        <configuration>
+          <webResources>
+            <resource>
+              <directory>src/main/appengine</directory>
+              <targetPath>WEB-INF/</targetPath>
+              <filtering>true</filtering>
+            </resource>
+          </webResources>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>**/*LiveTest.java</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 
-	<profiles>
-		<profile>
-			<id>live</id>
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-surefire-plugin</artifactId>
-						<executions>
-							<execution>
-								<id>integration</id>
-								<phase>integration-test</phase>
-								<goals>
-									<goal>test</goal>
-								</goals>
-								<configuration>
-									<excludes>
-										<exclude>none</exclude>
-									</excludes>
-									<includes>
-										<include>**/*LiveTest.java</include>
-									</includes>
-									<systemProperties>
-										<property>
-											<name>jclouds.chef.identity</name>
-											<value>${jclouds.chef.identity}</value>
-										</property>
-										<property>
-											<name>jclouds.chef.identity.pem</name>
-											<value>${jclouds.chef.identity.pem}</value>
-										</property>
-										<property>
-											<name>jclouds.chef.endpoint</name>
-											<value>${jclouds.chef.endpoint}</value>
-										</property>
-										<property>
-											<name>jclouds.chef.validator</name>
-											<value>${jclouds.chef.validator}</value>
-										</property>
-										<property>
-											<name>jclouds.chef.validator.pem</name>
-											<value>${jclouds.chef.validator.pem}</value>
-										</property>
-										<property>
-											<name>appengine.applicationid</name>
-											<value>${appengine.applicationid}</value>
-										</property>
-										<property>
-											<name>appengine.home</name>
-											<value>${appengine.home}</value>
-										</property>
-										<property>
-											<name>devappserver.address</name>
-											<value>${devappserver.address}</value>
-										</property>
-										<property>
-											<name>devappserver.port</name>
-											<value>${devappserver.port}</value>
-										</property>
-										<property>
-											<name>warfile</name>
-											<value>${project.build.directory}/${project.artifactId}</value>
-										</property>
-									</systemProperties>
-									<additionalClasspathElements>
-										<additionalClasspathElement>${appengine.home}/lib/appengine-tools-api.jar</additionalClasspathElement>
-									</additionalClasspathElements>
-									<environmentVariables>
-										<DEBUG>true</DEBUG>
-										<SDK_BIN>${appengine.home}/bin</SDK_BIN>
-										<SDK_LIB>${appengine.home}/lib</SDK_LIB>
-										<SDK_CONFIG>${appengine.home}/config/sdk</SDK_CONFIG>
-									</environmentVariables>
-								</configuration>
-							</execution>
-						</executions>
-					</plugin>
-				</plugins>
-			</build>
-		</profile>
-	</profiles>
+  <profiles>
+    <profile>
+      <id>live</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>integration</id>
+                <phase>integration-test</phase>
+                <goals>
+                  <goal>test</goal>
+                </goals>
+                <configuration>
+                  <excludes>
+                    <exclude>none</exclude>
+                  </excludes>
+                  <includes>
+                    <include>**/*LiveTest.java</include>
+                  </includes>
+                  <systemProperties>
+                    <property>
+                      <name>jclouds.chef.identity</name>
+                      <value>${jclouds.chef.identity}</value>
+                    </property>
+                    <property>
+                      <name>jclouds.chef.identity.pem</name>
+                      <value>${jclouds.chef.identity.pem}</value>
+                    </property>
+                    <property>
+                      <name>jclouds.chef.endpoint</name>
+                      <value>${jclouds.chef.endpoint}</value>
+                    </property>
+                    <property>
+                      <name>jclouds.chef.validator</name>
+                      <value>${jclouds.chef.validator}</value>
+                    </property>
+                    <property>
+                      <name>jclouds.chef.validator.pem</name>
+                      <value>${jclouds.chef.validator.pem}</value>
+                    </property>
+                    <property>
+                      <name>appengine.applicationid</name>
+                      <value>${appengine.applicationid}</value>
+                    </property>
+                    <property>
+                      <name>appengine.home</name>
+                      <value>${appengine.home}</value>
+                    </property>
+                    <property>
+                      <name>devappserver.address</name>
+                      <value>${devappserver.address}</value>
+                    </property>
+                    <property>
+                      <name>devappserver.port</name>
+                      <value>${devappserver.port}</value>
+                    </property>
+                    <property>
+                      <name>warfile</name>
+                      <value>${project.build.directory}/${project.artifactId}</value>
+                    </property>
+                  </systemProperties>
+                  <additionalClasspathElements>
+                    <additionalClasspathElement>${appengine.home}/lib/appengine-tools-api.jar</additionalClasspathElement>
+                  </additionalClasspathElements>
+                  <environmentVariables>
+                    <DEBUG>true</DEBUG>
+                    <SDK_BIN>${appengine.home}/bin</SDK_BIN>
+                    <SDK_LIB>${appengine.home}/lib</SDK_LIB>
+                    <SDK_CONFIG>${appengine.home}/config/sdk</SDK_CONFIG>
+                  </environmentVariables>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/7d6aa392/labs/hostedchef/pom.xml
----------------------------------------------------------------------
diff --git a/labs/hostedchef/pom.xml b/labs/hostedchef/pom.xml
index d04f7cd..243b049 100644
--- a/labs/hostedchef/pom.xml
+++ b/labs/hostedchef/pom.xml
@@ -1,122 +1,122 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Licensed to jclouds, Inc. (jclouds) under one or more
-    contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  jclouds licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
+Licensed to jclouds, Inc. (jclouds) under one or more
+contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  jclouds licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
 
-      http://www.apache.org/licenses/LICENSE-2.0
+http://www.apache.org/licenses/LICENSE-2.0
 
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
 
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.jclouds.chef</groupId>
-        <artifactId>chef-parent</artifactId>
-        <version>1.5.11-SNAPSHOT</version>
-        <relativePath>../../project/pom.xml</relativePath>
-    </parent>
-    <!-- <groupId>org.apache.jclouds.provider</groupId> -->
-    <groupId>org.apache.jclouds.labs</groupId>
-    <artifactId>hostedchef</artifactId>
-    <name>JClouds Chef :: Hosted Chef</name>
-    <description>jclouds components to access Hosted Chef</description>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.jclouds.chef</groupId>
+    <artifactId>chef-parent</artifactId>
+    <version>1.5.11-SNAPSHOT</version>
+    <relativePath>../../project/pom.xml</relativePath>
+  </parent>
+  <!-- <groupId>org.apache.jclouds.provider</groupId> -->
+  <groupId>org.apache.jclouds.labs</groupId>
+  <artifactId>hostedchef</artifactId>
+  <name>JClouds Chef :: Hosted Chef</name>
+  <description>jclouds components to access Hosted Chef</description>
 
-    <properties>
-        <test.jclouds.hostedchef.org>YOUR_ORG</test.jclouds.hostedchef.org>
-        <test.hostedchef.endpoint>https://api.opscode.com/organizations/${test.jclouds.hostedchef.org}</test.hostedchef.endpoint>
-        <test.hostedchef.api-version />
-        <test.hostedchef.build-version />
-        <test.hostedchef.identity>YOUR_USER</test.hostedchef.identity>
-        <test.hostedchef.credential>${user.home}/.chef/${jclouds.hostedchef.org}/${jclouds.test.identity}.pem</test.hostedchef.credential>
-        <test.hostedchef.validator.identity>${test.jclouds.hostedchef.org}-validator</test.hostedchef.validator.identity>
-        <test.hostedchef.validator.credential>${user.home}/.chef/${jclouds.hostedchef.org}/${test.hostedchef.validator.identity}.pem</test.hostedchef.validator.credential>
-        <jclouds.osgi.export>org.jclouds.hostedchef*;version="${project.version}"</jclouds.osgi.export>
-        <jclouds.osgi.import>org.jclouds*;version="${project.version}",*</jclouds.osgi.import>
-    </properties>
+  <properties>
+    <test.jclouds.hostedchef.org>YOUR_ORG</test.jclouds.hostedchef.org>
+    <test.hostedchef.endpoint>https://api.opscode.com/organizations/${test.jclouds.hostedchef.org}</test.hostedchef.endpoint>
+    <test.hostedchef.api-version />
+    <test.hostedchef.build-version />
+    <test.hostedchef.identity>YOUR_USER</test.hostedchef.identity>
+    <test.hostedchef.credential>${user.home}/.chef/${jclouds.hostedchef.org}/${jclouds.test.identity}.pem</test.hostedchef.credential>
+    <test.hostedchef.validator.identity>${test.jclouds.hostedchef.org}-validator</test.hostedchef.validator.identity>
+    <test.hostedchef.validator.credential>${user.home}/.chef/${jclouds.hostedchef.org}/${test.hostedchef.validator.identity}.pem</test.hostedchef.validator.credential>
+    <jclouds.osgi.export>org.jclouds.hostedchef*;version="${project.version}"</jclouds.osgi.export>
+    <jclouds.osgi.import>org.jclouds*;version="${project.version}",*</jclouds.osgi.import>
+  </properties>
 
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.jclouds.labs</groupId>
-            <artifactId>privatechef</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jclouds.labs</groupId>
-            <artifactId>privatechef</artifactId>
-            <version>${project.version}</version>
-            <type>test-jar</type>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jclouds.api</groupId>
-            <artifactId>chef</artifactId>
-            <version>${project.version}</version>
-            <type>test-jar</type>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jclouds</groupId>
-            <artifactId>jclouds-core</artifactId>
-            <version>1.5.11-SNAPSHOT</version>
-            <type>test-jar</type>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jclouds.driver</groupId>
-            <artifactId>jclouds-slf4j</artifactId>
-            <version>1.5.11-SNAPSHOT</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>ch.qos.logback</groupId>
-            <artifactId>logback-classic</artifactId>
-            <version>1.0.0</version>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.jclouds.labs</groupId>
+      <artifactId>privatechef</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds.labs</groupId>
+      <artifactId>privatechef</artifactId>
+      <version>${project.version}</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds.api</groupId>
+      <artifactId>chef</artifactId>
+      <version>${project.version}</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds</groupId>
+      <artifactId>jclouds-core</artifactId>
+      <version>1.5.11-SNAPSHOT</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds.driver</groupId>
+      <artifactId>jclouds-slf4j</artifactId>
+      <version>1.5.11-SNAPSHOT</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>ch.qos.logback</groupId>
+      <artifactId>logback-classic</artifactId>
+      <version>1.0.0</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
 
-    <profiles>
-        <profile>
-            <id>live</id>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-surefire-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <id>integration</id>
-                                <phase>integration-test</phase>
-                                <goals>
-                                    <goal>test</goal>
-                                </goals>
-                                <configuration>
-                                    <systemPropertyVariables>
-                                        <test.jclouds.hostedchef.org>${test.jclouds.hostedchef.org}</test.jclouds.hostedchef.org>
-                                        <test.hostedchef.endpoint>${test.hostedchef.endpoint}</test.hostedchef.endpoint>
-                                        <test.hostedchef.api-version>${test.hostedchef.api-version}</test.hostedchef.api-version>
-                                        <test.hostedchef.build-version>${test.hostedchef.build-version}</test.hostedchef.build-version>
-                                        <test.hostedchef.identity>${test.hostedchef.identity}</test.hostedchef.identity>
-                                        <test.hostedchef.credential>${test.hostedchef.credential}</test.hostedchef.credential>
-                                    </systemPropertyVariables>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
+  <profiles>
+    <profile>
+      <id>live</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>integration</id>
+                <phase>integration-test</phase>
+                <goals>
+                  <goal>test</goal>
+                </goals>
+                <configuration>
+                  <systemPropertyVariables>
+                    <test.jclouds.hostedchef.org>${test.jclouds.hostedchef.org}</test.jclouds.hostedchef.org>
+                    <test.hostedchef.endpoint>${test.hostedchef.endpoint}</test.hostedchef.endpoint>
+                    <test.hostedchef.api-version>${test.hostedchef.api-version}</test.hostedchef.api-version>
+                    <test.hostedchef.build-version>${test.hostedchef.build-version}</test.hostedchef.build-version>
+                    <test.hostedchef.identity>${test.hostedchef.identity}</test.hostedchef.identity>
+                    <test.hostedchef.credential>${test.hostedchef.credential}</test.hostedchef.credential>
+                  </systemPropertyVariables>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/7d6aa392/labs/pom.xml
----------------------------------------------------------------------
diff --git a/labs/pom.xml b/labs/pom.xml
index f7c1938..c8aa321 100644
--- a/labs/pom.xml
+++ b/labs/pom.xml
@@ -1,38 +1,38 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Licensed to jclouds, Inc. (jclouds) under one or more
-    contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  jclouds licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
+Licensed to jclouds, Inc. (jclouds) under one or more
+contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  jclouds licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
 
-      http://www.apache.org/licenses/LICENSE-2.0
+http://www.apache.org/licenses/LICENSE-2.0
 
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
 
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.jclouds.chef</groupId>
-        <artifactId>chef-parent</artifactId>
-        <version>1.5.11-SNAPSHOT</version>
-        <relativePath>../project/pom.xml</relativePath>
-    </parent>
-    <groupId>org.apache.jclouds.labs</groupId>
-    <artifactId>chef-labs-project</artifactId>
-    <packaging>pom</packaging>
-    <name>JClouds Chef :: Labs</name>
-    <modules>
-       <module>privatechef</module>
-       <module>hostedchef</module>
-    </modules>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.jclouds.chef</groupId>
+    <artifactId>chef-parent</artifactId>
+    <version>1.5.11-SNAPSHOT</version>
+    <relativePath>../project/pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.jclouds.labs</groupId>
+  <artifactId>chef-labs-project</artifactId>
+  <packaging>pom</packaging>
+  <name>JClouds Chef :: Labs</name>
+  <modules>
+    <module>privatechef</module>
+    <module>hostedchef</module>
+  </modules>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/7d6aa392/labs/privatechef/pom.xml
----------------------------------------------------------------------
diff --git a/labs/privatechef/pom.xml b/labs/privatechef/pom.xml
index 5ec4d09..c17da91 100644
--- a/labs/privatechef/pom.xml
+++ b/labs/privatechef/pom.xml
@@ -1,116 +1,116 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Licensed to jclouds, Inc. (jclouds) under one or more
-    contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  jclouds licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
+Licensed to jclouds, Inc. (jclouds) under one or more
+contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  jclouds licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
 
-      http://www.apache.org/licenses/LICENSE-2.0
+http://www.apache.org/licenses/LICENSE-2.0
 
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
 
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.jclouds.chef</groupId>
-        <artifactId>chef-parent</artifactId>
-        <version>1.5.11-SNAPSHOT</version>
-        <relativePath>../../project/pom.xml</relativePath>
-    </parent>
-    <!-- <groupId>org.apache.jclouds.api</groupId> -->
-    <groupId>org.apache.jclouds.labs</groupId>
-    <artifactId>privatechef</artifactId>
-    <name>JClouds Chef :: Private Chef</name>
-    <description>jclouds components to access Private Chef</description>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.jclouds.chef</groupId>
+    <artifactId>chef-parent</artifactId>
+    <version>1.5.11-SNAPSHOT</version>
+    <relativePath>../../project/pom.xml</relativePath>
+  </parent>
+  <!-- <groupId>org.apache.jclouds.api</groupId> -->
+  <groupId>org.apache.jclouds.labs</groupId>
+  <artifactId>privatechef</artifactId>
+  <name>JClouds Chef :: Private Chef</name>
+  <description>jclouds components to access Private Chef</description>
 
-    <properties>
-        <test.jclouds.privatechef.org>YOUR_ORG</test.jclouds.privatechef.org>
-        <test.privatechef.endpoint>https://api.opscode.com/organizations/${test.jclouds.privatechef.org}</test.privatechef.endpoint>
-        <test.privatechef.api-version />
-        <test.privatechef.build-version />
-        <test.privatechef.identity>YOUR_USER</test.privatechef.identity>
-        <test.privatechef.credential>${user.home}/.chef/${jclouds.privatechef.org}/${jclouds.test.identity}.pem</test.privatechef.credential>
-        <test.privatechef.validator.identity>${test.jclouds.privatechef.org}-validator</test.privatechef.validator.identity>
-        <test.privatechef.validator.credential>${user.home}/.chef/${jclouds.privatechef.org}/${test.privatechef.validator.identity}.pem</test.privatechef.validator.credential>
+  <properties>
+    <test.jclouds.privatechef.org>YOUR_ORG</test.jclouds.privatechef.org>
+    <test.privatechef.endpoint>https://api.opscode.com/organizations/${test.jclouds.privatechef.org}</test.privatechef.endpoint>
+    <test.privatechef.api-version />
+    <test.privatechef.build-version />
+    <test.privatechef.identity>YOUR_USER</test.privatechef.identity>
+    <test.privatechef.credential>${user.home}/.chef/${jclouds.privatechef.org}/${jclouds.test.identity}.pem</test.privatechef.credential>
+    <test.privatechef.validator.identity>${test.jclouds.privatechef.org}-validator</test.privatechef.validator.identity>
+    <test.privatechef.validator.credential>${user.home}/.chef/${jclouds.privatechef.org}/${test.privatechef.validator.identity}.pem</test.privatechef.validator.credential>
 
-        <jclouds.osgi.export>org.jclouds.privatechef*;version="${project.version}"</jclouds.osgi.export>
-        <jclouds.osgi.import>org.jclouds*;version="${project.version}",*</jclouds.osgi.import>
-    </properties>
+    <jclouds.osgi.export>org.jclouds.privatechef*;version="${project.version}"</jclouds.osgi.export>
+    <jclouds.osgi.import>org.jclouds*;version="${project.version}",*</jclouds.osgi.import>
+  </properties>
 
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.jclouds.api</groupId>
-            <artifactId>chef</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jclouds.api</groupId>
-            <artifactId>chef</artifactId>
-            <version>${project.version}</version>
-            <type>test-jar</type>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jclouds</groupId>
-            <artifactId>jclouds-core</artifactId>
-            <version>1.5.11-SNAPSHOT</version>
-            <type>test-jar</type>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jclouds.driver</groupId>
-            <artifactId>jclouds-slf4j</artifactId>
-            <version>1.5.11-SNAPSHOT</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>ch.qos.logback</groupId>
-            <artifactId>logback-classic</artifactId>
-            <version>1.0.0</version>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.jclouds.api</groupId>
+      <artifactId>chef</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds.api</groupId>
+      <artifactId>chef</artifactId>
+      <version>${project.version}</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds</groupId>
+      <artifactId>jclouds-core</artifactId>
+      <version>1.5.11-SNAPSHOT</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jclouds.driver</groupId>
+      <artifactId>jclouds-slf4j</artifactId>
+      <version>1.5.11-SNAPSHOT</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>ch.qos.logback</groupId>
+      <artifactId>logback-classic</artifactId>
+      <version>1.0.0</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
 
-    <profiles>
-        <profile>
-            <id>live</id>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-surefire-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <id>integration</id>
-                                <phase>integration-test</phase>
-                                <goals>
-                                    <goal>test</goal>
-                                </goals>
-                                <configuration>
-                                    <systemPropertyVariables>
-                                        <test.jclouds.privatechef.org>${test.jclouds.privatechef.org}</test.jclouds.privatechef.org>
-                                        <test.privatechef.endpoint>${test.privatechef.endpoint}</test.privatechef.endpoint>
-                                        <test.privatechef.api-version>${test.privatechef.api-version}</test.privatechef.api-version>
-                                        <test.privatechef.build-version>${test.privatechef.build-version}</test.privatechef.build-version>
-                                        <test.privatechef.identity>${test.privatechef.identity}</test.privatechef.identity>
-                                        <test.privatechef.credential>${test.privatechef.credential}</test.privatechef.credential>
-                                    </systemPropertyVariables>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
+  <profiles>
+    <profile>
+      <id>live</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>integration</id>
+                <phase>integration-test</phase>
+                <goals>
+                  <goal>test</goal>
+                </goals>
+                <configuration>
+                  <systemPropertyVariables>
+                    <test.jclouds.privatechef.org>${test.jclouds.privatechef.org}</test.jclouds.privatechef.org>
+                    <test.privatechef.endpoint>${test.privatechef.endpoint}</test.privatechef.endpoint>
+                    <test.privatechef.api-version>${test.privatechef.api-version}</test.privatechef.api-version>
+                    <test.privatechef.build-version>${test.privatechef.build-version}</test.privatechef.build-version>
+                    <test.privatechef.identity>${test.privatechef.identity}</test.privatechef.identity>
+                    <test.privatechef.credential>${test.privatechef.credential}</test.privatechef.credential>
+                  </systemPropertyVariables>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/7d6aa392/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 96f9c68..622bae6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,32 +1,32 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Licensed to jclouds, Inc. (jclouds) under one or more
-    contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  jclouds licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
+Licensed to jclouds, Inc. (jclouds) under one or more
+contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  jclouds licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
 
-      http://www.apache.org/licenses/LICENSE-2.0
+http://www.apache.org/licenses/LICENSE-2.0
 
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
 
-    -->
+-->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.jclouds.chef</groupId>
-        <artifactId>chef-parent</artifactId>        
-        <version>1.5.11-SNAPSHOT</version>
-        <relativePath>project/pom.xml</relativePath>
-    </parent>
+  <parent>
+    <groupId>org.apache.jclouds.chef</groupId>
+    <artifactId>chef-parent</artifactId>        
+    <version>1.5.11-SNAPSHOT</version>
+    <relativePath>project/pom.xml</relativePath>
+  </parent>
   <artifactId>chef-project</artifactId>
   <name>JClouds Chef :: Project POM</name>
   <description>JClouds Chef top level project pom for builds</description>

http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/7d6aa392/project/pom.xml
----------------------------------------------------------------------
diff --git a/project/pom.xml b/project/pom.xml
index 93c9979..cfa7fd7 100644
--- a/project/pom.xml
+++ b/project/pom.xml
@@ -1,22 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Licensed to jclouds, Inc. (jclouds) under one or more
-    contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  jclouds licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
+Licensed to jclouds, Inc. (jclouds) under one or more
+contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  jclouds licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
 
-      http://www.apache.org/licenses/LICENSE-2.0
+http://www.apache.org/licenses/LICENSE-2.0
 
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
 
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
@@ -224,27 +224,27 @@
     </plugins>
   </build>
   <profiles>
-        <!-- modifies the plugin config inherited from oss-parent -->
-        <profile> 
-            <id>sonatype-release-profile-extension</id>
-            <activation>
-                <property> 
-                    <name>performRelease</name> 
-                    <value>true</value> 
-                </property>
-            </activation>            
-            <build> 
-                <plugins>
-                    <plugin>
-                        <artifactId>maven-gpg-plugin</artifactId> 
-                        <configuration>
-                            <executable>${gpg.command}</executable>
-                            <passphrase>${gpg.passphrase}</passphrase>
-                        </configuration>
-                    </plugin> 
-                </plugins>
-            </build> 
-        </profile>   
+    <!-- modifies the plugin config inherited from oss-parent -->
+    <profile> 
+      <id>sonatype-release-profile-extension</id>
+      <activation>
+        <property> 
+          <name>performRelease</name> 
+          <value>true</value> 
+        </property>
+      </activation>            
+      <build> 
+        <plugins>
+          <plugin>
+            <artifactId>maven-gpg-plugin</artifactId> 
+            <configuration>
+              <executable>${gpg.command}</executable>
+              <passphrase>${gpg.passphrase}</passphrase>
+            </configuration>
+          </plugin> 
+        </plugins>
+      </build> 
+    </profile>   
     <profile>
       <id>live</id>
       <build>
@@ -273,22 +273,22 @@
                   </properties>
                   <systemProperties>
                     <!--
-                                              If you're behind a proxy, set this here
-                                              http://java.sun.com/javase/6/docs/technotes/guides/net/proxies.html
+                        If you're behind a proxy, set this here
+                        http://java.sun.com/javase/6/docs/technotes/guides/net/proxies.html
 
-                                              <property>
-                                                 <name>https.proxyHost</name>
-                                                 <value>proxy</value>
-                                              </property>
-                                              <property>
-                                                 <name>https.proxyPort</name>
-                                                 <value>port</value>
-                                              </property>
-                                              <property>
-                                                 <name>https.noProxyHosts</name>
-                                                 <value>localhost|10.150.4.49</value>
-                                              </property>
-                                        -->
+<property>
+<name>https.proxyHost</name>
+<value>proxy</value>
+</property>
+<property>
+<name>https.proxyPort</name>
+<value>port</value>
+</property>
+<property>
+<name>https.noProxyHosts</name>
+<value>localhost|10.150.4.49</value>
+</property>
+                    -->
                     <property>
                       <name>file.encoding</name>
                       <value>${project.build.sourceEncoding}</value>
@@ -336,25 +336,25 @@
         </plugins>
       </build>
     </profile>
-        <profile>
-            <id>doc</id>
-            <build>
-                <plugins>
-                    <plugin>
-                        <artifactId>maven-javadoc-plugin</artifactId>
-                        <version>2.8.1</version>
-                        <executions>
-                            <execution>
-                                <id>javadoc</id>
-                                <phase>package</phase>
-                                <goals>
-                                    <goal>jar</goal>
-                                </goals>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
+    <profile>
+      <id>doc</id>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <version>2.8.1</version>
+            <executions>
+              <execution>
+                <id>javadoc</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
   </profiles>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-jclouds-chef/blob/7d6aa392/servlet/pom.xml
----------------------------------------------------------------------
diff --git a/servlet/pom.xml b/servlet/pom.xml
index 31e93f1..b5b1046 100644
--- a/servlet/pom.xml
+++ b/servlet/pom.xml
@@ -1,22 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Licensed to jclouds, Inc. (jclouds) under one or more
-    contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  jclouds licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
+Licensed to jclouds, Inc. (jclouds) under one or more
+contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  jclouds licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
 
-      http://www.apache.org/licenses/LICENSE-2.0
+http://www.apache.org/licenses/LICENSE-2.0
 
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
 
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">