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>
|
||||
</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>
|
||||
|
|
Loading…
Reference in New Issue