Author: janstey Date: Tue Mar 22 12:40:57 2011 New Revision: 1084148 URL: http://svn.apache.org/viewvc?rev=1084148&view=rev Log: archetype-resources dir was not getting included in archetype
Modified: camel/trunk/tooling/archetypes/camel-archetype-activemq/pom.xml camel/trunk/tooling/archetypes/camel-archetype-component/pom.xml camel/trunk/tooling/archetypes/camel-archetype-java/pom.xml camel/trunk/tooling/archetypes/camel-archetype-scala/pom.xml camel/trunk/tooling/archetypes/camel-archetype-spring/pom.xml camel/trunk/tooling/archetypes/camel-archetype-web/pom.xml camel/trunk/tooling/archetypes/camel-archetype-webconsole/pom.xml Modified: camel/trunk/tooling/archetypes/camel-archetype-activemq/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/tooling/archetypes/camel-archetype-activemq/pom.xml?rev=1084148&r1=1084147&r2=1084148&view=diff ============================================================================== --- camel/trunk/tooling/archetypes/camel-archetype-activemq/pom.xml (original) +++ camel/trunk/tooling/archetypes/camel-archetype-activemq/pom.xml Tue Mar 22 12:40:57 2011 @@ -41,9 +41,15 @@ <artifactId>archetype-packaging</artifactId> </extension> </extensions> + + <!-- include all resources but only filter archetype-metadata.xml --> <resources> <resource> <directory>src/main/resources</directory> + <filtering>false</filtering> + </resource> + <resource> + <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/archetype-metadata.xml</include> Modified: camel/trunk/tooling/archetypes/camel-archetype-component/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/tooling/archetypes/camel-archetype-component/pom.xml?rev=1084148&r1=1084147&r2=1084148&view=diff ============================================================================== --- camel/trunk/tooling/archetypes/camel-archetype-component/pom.xml (original) +++ camel/trunk/tooling/archetypes/camel-archetype-component/pom.xml Tue Mar 22 12:40:57 2011 @@ -41,9 +41,15 @@ <artifactId>archetype-packaging</artifactId> </extension> </extensions> + + <!-- include all resources but only filter archetype-metadata.xml --> <resources> <resource> <directory>src/main/resources</directory> + <filtering>false</filtering> + </resource> + <resource> + <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/archetype-metadata.xml</include> Modified: camel/trunk/tooling/archetypes/camel-archetype-java/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/tooling/archetypes/camel-archetype-java/pom.xml?rev=1084148&r1=1084147&r2=1084148&view=diff ============================================================================== --- camel/trunk/tooling/archetypes/camel-archetype-java/pom.xml (original) +++ camel/trunk/tooling/archetypes/camel-archetype-java/pom.xml Tue Mar 22 12:40:57 2011 @@ -41,9 +41,15 @@ <artifactId>archetype-packaging</artifactId> </extension> </extensions> + + <!-- include all resources but only filter archetype-metadata.xml --> <resources> <resource> <directory>src/main/resources</directory> + <filtering>false</filtering> + </resource> + <resource> + <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/archetype-metadata.xml</include> Modified: camel/trunk/tooling/archetypes/camel-archetype-scala/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/tooling/archetypes/camel-archetype-scala/pom.xml?rev=1084148&r1=1084147&r2=1084148&view=diff ============================================================================== --- camel/trunk/tooling/archetypes/camel-archetype-scala/pom.xml (original) +++ camel/trunk/tooling/archetypes/camel-archetype-scala/pom.xml Tue Mar 22 12:40:57 2011 @@ -41,9 +41,15 @@ <artifactId>archetype-packaging</artifactId> </extension> </extensions> + + <!-- include all resources but only filter archetype-metadata.xml --> <resources> <resource> <directory>src/main/resources</directory> + <filtering>false</filtering> + </resource> + <resource> + <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/archetype-metadata.xml</include> Modified: camel/trunk/tooling/archetypes/camel-archetype-spring/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/tooling/archetypes/camel-archetype-spring/pom.xml?rev=1084148&r1=1084147&r2=1084148&view=diff ============================================================================== --- camel/trunk/tooling/archetypes/camel-archetype-spring/pom.xml (original) +++ camel/trunk/tooling/archetypes/camel-archetype-spring/pom.xml Tue Mar 22 12:40:57 2011 @@ -41,9 +41,15 @@ <artifactId>archetype-packaging</artifactId> </extension> </extensions> + + <!-- include all resources but only filter archetype-metadata.xml --> <resources> <resource> <directory>src/main/resources</directory> + <filtering>false</filtering> + </resource> + <resource> + <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/archetype-metadata.xml</include> Modified: camel/trunk/tooling/archetypes/camel-archetype-web/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/tooling/archetypes/camel-archetype-web/pom.xml?rev=1084148&r1=1084147&r2=1084148&view=diff ============================================================================== --- camel/trunk/tooling/archetypes/camel-archetype-web/pom.xml (original) +++ camel/trunk/tooling/archetypes/camel-archetype-web/pom.xml Tue Mar 22 12:40:57 2011 @@ -41,9 +41,15 @@ <artifactId>archetype-packaging</artifactId> </extension> </extensions> + + <!-- include all resources but only filter archetype-metadata.xml --> <resources> <resource> <directory>src/main/resources</directory> + <filtering>false</filtering> + </resource> + <resource> + <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/archetype-metadata.xml</include> Modified: camel/trunk/tooling/archetypes/camel-archetype-webconsole/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/tooling/archetypes/camel-archetype-webconsole/pom.xml?rev=1084148&r1=1084147&r2=1084148&view=diff ============================================================================== --- camel/trunk/tooling/archetypes/camel-archetype-webconsole/pom.xml (original) +++ camel/trunk/tooling/archetypes/camel-archetype-webconsole/pom.xml Tue Mar 22 12:40:57 2011 @@ -41,9 +41,15 @@ <artifactId>archetype-packaging</artifactId> </extension> </extensions> + + <!-- include all resources but only filter archetype-metadata.xml --> <resources> <resource> <directory>src/main/resources</directory> + <filtering>false</filtering> + </resource> + <resource> + <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/archetype-metadata.xml</include>