You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ch...@apache.org on 2008/06/16 15:48:45 UTC

svn commit: r668158 - /servicemix/components/components-pom/trunk/pom.xml

Author: chirino
Date: Mon Jun 16 06:48:45 2008
New Revision: 668158

URL: http://svn.apache.org/viewvc?rev=668158&view=rev
Log:
Adding an intial config for the res-maven-plugin

Modified:
    servicemix/components/components-pom/trunk/pom.xml

Modified: servicemix/components/components-pom/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/components-pom/trunk/pom.xml?rev=668158&r1=668157&r2=668158&view=diff
==============================================================================
--- servicemix/components/components-pom/trunk/pom.xml (original)
+++ servicemix/components/components-pom/trunk/pom.xml Mon Jun 16 06:48:45 2008
@@ -1536,6 +1536,75 @@
             <outputDirectory>${basedir}/eclipse-classes</outputDirectory>
           </configuration>
         </plugin>
+        <plugin>
+  				<inherited>true</inherited>
+  				<groupId>org.apache.servicemix.tooling</groupId>
+  				<artifactId>res-maven-plugin</artifactId>
+  				<version>3.2.1</version>
+  				<configuration>
+  					<inputDirectory>${basedir}/src/main/resources</inputDirectory>
+  					<outputDirectory>${basedir}/target/classes</outputDirectory>
+  					<filters>
+  						<repositories><![CDATA[  
+  <repositories>
+    <repository>
+      <id>apache.incubating</id>
+      <name>Apache Incubating Repository</name>
+      <url>http://people.apache.org/repo/m2-incubating-repository</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+    </repository>
+    <repository>
+      <id>apache.snapshots</id>
+      <name>Apache Snapshots Repository</name>
+      <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+    </repository>
+  </repositories>
+  <pluginRepositories>
+    <pluginRepository>
+      <id>apache.incubating</id>
+      <name>Apache Incubating Repository</name>
+      <url>http://people.apache.org/repo/m2-incubating-repository</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+	</pluginRepository>
+	<pluginRepository>
+    <id>apache.snapshots</id>
+    <name>Apache Snapshots Repository</name>
+    <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+	  <snapshots>
+	    <enabled>true</enabled>
+	  </snapshots>
+	  <releases>
+	    <enabled>false</enabled>
+	  </releases>
+	</pluginRepository>
+  </pluginRepositories>
+]]></repositories>
+  					</filters>
+  				</configuration>
+  				<executions>
+  					<execution>
+  						<goals>
+  							<goal>resources</goal>
+  						</goals>
+  					</execution>
+  				</executions>
+  			</plugin>
       </plugins>
     </pluginManagement>
     <plugins>