You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by an...@apache.org on 2013/11/21 19:00:37 UTC

git commit: JCLOUDS-386: Removing the remote-resources plugin

Updated Branches:
  refs/heads/remove-remote-res-plugin 90adab232 -> 67efb5f50 (forced update)


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


Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/67efb5f5
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/67efb5f5
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/67efb5f5

Branch: refs/heads/remove-remote-res-plugin
Commit: 67efb5f5086551dd9b42b479d0dea22b084be0f7
Parents: 3ecbf90
Author: Andrew Phillips <an...@apache.org>
Authored: Thu Nov 21 12:52:20 2013 -0500
Committer: Andrew Phillips <an...@apache.org>
Committed: Thu Nov 21 12:58:47 2013 -0500

----------------------------------------------------------------------
 project/pom.xml   | 19 +------------------
 resources/pom.xml | 38 --------------------------------------
 2 files changed, 1 insertion(+), 56 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/67efb5f5/project/pom.xml
----------------------------------------------------------------------
diff --git a/project/pom.xml b/project/pom.xml
index d17a2e4..82334fe 100644
--- a/project/pom.xml
+++ b/project/pom.xml
@@ -705,10 +705,6 @@
           <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>
         </plugin>
@@ -998,20 +994,7 @@
         </site>
       </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>        
+        <plugins> 
           <plugin>
             <!-- When building jclouds-project, override the config to use the local file -->
             <artifactId>maven-checkstyle-plugin</artifactId>

http://git-wip-us.apache.org/repos/asf/jclouds/blob/67efb5f5/resources/pom.xml
----------------------------------------------------------------------
diff --git a/resources/pom.xml b/resources/pom.xml
index b6092b2..cb0efe2 100644
--- a/resources/pom.xml
+++ b/resources/pom.xml
@@ -33,14 +33,6 @@
   <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>
         <includes>
@@ -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>