[issue 503] Suppressing the remote resource bundle processing in the project module to avoid a circular dependency

This commit is contained in:
Andrew Phillips 2011-04-15 14:19:34 -04:00
parent 7d6dafcc9b
commit 104b19c495
1 changed files with 29 additions and 1 deletions

View File

@ -486,7 +486,7 @@ pageTracker._trackPageview();
<resourceBundle>org.jclouds:jclouds-resources:${project.version}</resourceBundle>
</resourceBundles>
</configuration>
</execution>
</execution>
</executions>
</plugin>
</plugins>
@ -861,5 +861,33 @@ pageTracker._trackPageview();
</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>