JCLOUDS-386: Removing the remote-resources plugin

We only use the shared resources for the Checkstyle config now, and that doesn't need to be "mixed in" to the project output directory
This commit is contained in:
Andrew Phillips 2013-11-21 12:52:20 -05:00
parent 0d8efbd97a
commit 981db34655
2 changed files with 0 additions and 55 deletions

View File

@ -702,10 +702,6 @@
<artifactId>maven-jxr-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<artifactId>maven-remote-resources-plugin</artifactId>
<version>1.4</version>
</plugin>
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.7.1</version>
@ -997,19 +993,6 @@
</distributionManagement>
<build>
<plugins>
<plugin>
<artifactId>maven-remote-resources-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>process</goal>
</goals>
<configuration>
<skip>true</skip>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<!-- When building jclouds-project, override the config to use the local file -->
<artifactId>maven-checkstyle-plugin</artifactId>

View File

@ -32,14 +32,6 @@
local repo with 'mvn clean install' first. -->
<build>
<resources>
<resource>
<targetPath>META-INF</targetPath>
<directory>${project.basedir}</directory>
<includes>
<include>LICENSE.txt</include>
<include>NOTICE.txt</include>
</includes>
</resource>
<resource>
<targetPath>resources</targetPath>
<directory>${project.basedir}</directory>
@ -48,35 +40,5 @@
</includes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-remote-resources-plugin</artifactId>
<executions>
<execution>
<id>bundle-remote-resources</id>
<goals>
<goal>bundle</goal>
</goals>
<!-- run *after* copying resources to the output directory -->
<phase>process-resources</phase>
<configuration>
<resourcesDirectory>${project.build.outputDirectory}</resourcesDirectory>
<includes>
<include>META-INF/LICENSE.txt</include>
<include>META-INF/NOTICE.txt</include>
</includes>
</configuration>
</execution>
<execution>
<goals>
<goal>process</goal>
</goals>
<configuration>
<skip>true</skip>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>