mirror of https://github.com/apache/jclouds.git
[issue 503] Suppressing the remote resource bundle processing in the project module to avoid a circular dependency
This commit is contained in:
parent
7d6dafcc9b
commit
104b19c495
|
@ -486,7 +486,7 @@ pageTracker._trackPageview();
|
||||||
<resourceBundle>org.jclouds:jclouds-resources:${project.version}</resourceBundle>
|
<resourceBundle>org.jclouds:jclouds-resources:${project.version}</resourceBundle>
|
||||||
</resourceBundles>
|
</resourceBundles>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
|
@ -861,5 +861,33 @@ pageTracker._trackPageview();
|
||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
</build>
|
</build>
|
||||||
</profile>
|
</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>
|
</profiles>
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in New Issue