[issue 503] Suppressing the remote resource bundle processing in the project module to avoid a circular dependency
diff --git a/project/pom.xml b/project/pom.xml
index 39c7d9c..3dc99c3 100644
--- a/project/pom.xml
+++ b/project/pom.xml
@@ -486,7 +486,7 @@
                                 <resourceBundle>org.jclouds:jclouds-resources:${project.version}</resourceBundle>
                             </resourceBundles>
                         </configuration>
-                    </execution>                    
+                    </execution>          
                 </executions>
             </plugin>
         </plugins>
@@ -861,5 +861,33 @@
                 </pluginManagement>
             </build>
         </profile>
+        <profile>
+            <id>jclouds-project</id>
+            <activation>
+                <file>
+                    <!-- only in the jclouds-project module -->
+                    <exists>src/etc/header.txt</exists>
+                </file>
+            </activation>        
+            <build>
+                <plugins>
+                   <plugin>      
+                        <artifactId>maven-remote-resources-plugin</artifactId>
+                        <version>1.2</version>
+                        <executions>
+                            <execution>
+                                <id>process-remote-resources</id>
+                                <goals>
+                                    <goal>process</goal>
+                                </goals>
+                                <configuration>
+                                    <skip>true</skip>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>        
+                </plugins>            
+            </build>
+        </profile>
     </profiles>
 </project>