Added:
camel/trunk/examples/camel-example-spring-javaconfig/src/main/resources/features.xml
URL:
http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-spring-javaconfig/src/main/resources/features.xml?rev=926113&view=auto
==============================================================================
---
camel/trunk/examples/camel-example-spring-javaconfig/src/main/resources/features.xml
(added)
+++
camel/trunk/examples/camel-example-spring-javaconfig/src/main/resources/features.xml
Mon Mar 22 15:01:11 2010
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<features>
+
<repository>mvn:org.apache.camel.karaf/apache-camel/${pom.version}/xml/features</repository>
+ <!-- NOTE the camel-example-spring-javaconfig feature need to install the
spring 3.0.0 -->
+
+ <feature name='activemq-feature' version='${pom.version}'>
+
<bundle>mvn:org.apache.geronimo.specs/geronimo-jta_1.1_spec/1.1.1</bundle>
+
<bundle>mvn:org.apache.geronimo.specs/geronimo-jms_1.1_spec/1.1.1</bundle>
+
<bundle>mvn:org.apache.geronimo.specs/geronimo-j2ee-management_1.1_spec/1.0.1</bundle>
+
<bundle>mvn:org.apache.geronimo.specs/geronimo-j2ee-connector_1.5_spec/2.0.0</bundle>
+
<bundle>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-pool/1.5.4_1</bundle>
+ <bundle>mvn:org.apache.xbean/xbean-spring/3.4.3</bundle>
+ <bundle>mvn:org.apache.activemq/kahadb/${activemq.version}</bundle>
+
<bundle>mvn:org.apache.activemq/activemq-core/${activemq.version}</bundle>
+ <bundle>mvn:org.apache.activemq/activemq-ra/${activemq.version}</bundle>
+
<bundle>mvn:org.apache.activemq/activemq-pool/${activemq.version}</bundle>
+
<bundle>mvn:org.apache.activemq/activemq-camel/${activemq.version}</bundle>
+ </feature>
+
+ <feature name='camel-example-spring-javaconfig' version='${pom.version}'>
+ <feature version="${pom.version}">camel</feature>
+ <feature version="${pom.version}">camel-jms</feature>
+
<bundle>mvn:org.apache.camel/camel-example-spring-javaconfig/${pom.version}</bundle>
+ </feature>
+
+</features>
\ No newline at end of file
Propchange:
camel/trunk/examples/camel-example-spring-javaconfig/src/main/resources/features.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
camel/trunk/examples/camel-example-spring-javaconfig/src/main/resources/features.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
camel/trunk/examples/camel-example-spring-javaconfig/src/main/resources/features.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Modified: camel/trunk/examples/camel-example-spring-jms/pom.xml
URL:
http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-spring-jms/pom.xml?rev=926113&r1=926112&r2=926113&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-spring-jms/pom.xml (original)
+++ camel/trunk/examples/camel-example-spring-jms/pom.xml Mon Mar 22 15:01:11
2010
@@ -144,7 +144,48 @@
</profile>
</profiles>
<build>
- <plugins>
+ <resources>
+ <resource>
+ <directory>src/main/resources</directory>
+ <filtering>true</filtering>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>process-resources</phase>
+ <goals>
+ <goal>resources</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+
<artifactId>build-helper-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-artifacts</id>
+ <phase>package</phase>
+ <goals>
+
<goal>attach-artifact</goal>
+ </goals>
+ <configuration>
+ <artifacts>
+ <artifact>
+
<file>target/classes/features.xml</file>
+
<type>xml</type>
+
<classifier>features</classifier>
+ </artifact>
+ </artifacts>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
<!-- Allows the example to be run via 'mvn compile exec:java' -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
Added:
camel/trunk/examples/camel-example-spring-jms/src/main/resources/features.xml
URL:
http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-spring-jms/src/main/resources/features.xml?rev=926113&view=auto
==============================================================================
---
camel/trunk/examples/camel-example-spring-jms/src/main/resources/features.xml
(added)
+++
camel/trunk/examples/camel-example-spring-jms/src/main/resources/features.xml
Mon Mar 22 15:01:11 2010
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<features>
+
<repository>mvn:org.apache.camel.karaf/apache-camel/${pom.version}/xml/features</repository>
+
+ <feature name='activemq-feature' version='${pom.version}'>
+
<bundle>mvn:org.apache.geronimo.specs/geronimo-jta_1.1_spec/1.1.1</bundle>
+
<bundle>mvn:org.apache.geronimo.specs/geronimo-jms_1.1_spec/1.1.1</bundle>
+
<bundle>mvn:org.apache.geronimo.specs/geronimo-j2ee-management_1.1_spec/1.0.1</bundle>
+
<bundle>mvn:org.apache.geronimo.specs/geronimo-j2ee-connector_1.5_spec/2.0.0</bundle>
+
<bundle>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-pool/1.5.4_1</bundle>
+ <bundle>mvn:org.apache.xbean/xbean-spring/3.4.3</bundle>
+ <bundle>mvn:org.apache.activemq/kahadb/${activemq-version}</bundle>
+
<bundle>mvn:org.apache.activemq/activemq-core/${activemq-version}</bundle>
+ <bundle>mvn:org.apache.activemq/activemq-ra/${activemq-version}</bundle>
+
<bundle>mvn:org.apache.activemq/activemq-pool/${activemq-version}</bundle>
+
<bundle>mvn:org.apache.activemq/activemq-camel/${activemq-version}</bundle>
+ </feature>
+
+ <feature name='camel-example-spring-jms' version='${pom.version}'>
+ <feature version="${pom.version}">camel</feature>
+ <feature version="${pom.version}">camel-jms</feature>
+
<bundle>mvn:org.apache.camel/camel-example-spring-jms/${pom.version}</bundle>
+ </feature>
+
+</features>
\ No newline at end of file
Propchange:
camel/trunk/examples/camel-example-spring-jms/src/main/resources/features.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
camel/trunk/examples/camel-example-spring-jms/src/main/resources/features.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
camel/trunk/examples/camel-example-spring-jms/src/main/resources/features.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Modified: camel/trunk/examples/camel-example-spring-xquery/pom.xml
URL:
http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-spring-xquery/pom.xml?rev=926113&r1=926112&r2=926113&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-spring-xquery/pom.xml (original)
+++ camel/trunk/examples/camel-example-spring-xquery/pom.xml Mon Mar 22
15:01:11 2010
@@ -68,7 +68,48 @@
</dependencies>
<build>
- <plugins>
+ <resources>
+ <resource>
+ <directory>src/main/resources</directory>
+ <filtering>true</filtering>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>process-resources</phase>
+ <goals>
+ <goal>resources</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+
<artifactId>build-helper-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-artifacts</id>
+ <phase>package</phase>
+ <goals>
+
<goal>attach-artifact</goal>
+ </goals>
+ <configuration>
+ <artifacts>
+ <artifact>
+
<file>target/classes/features.xml</file>
+
<type>xml</type>
+
<classifier>features</classifier>
+ </artifact>
+ </artifacts>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
<!-- Allows the routes to be run via 'mvn camel:run' -->
<plugin>
<groupId>org.apache.camel</groupId>
Added:
camel/trunk/examples/camel-example-spring-xquery/src/main/resources/features.xml
URL:
http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-spring-xquery/src/main/resources/features.xml?rev=926113&view=auto
==============================================================================
---
camel/trunk/examples/camel-example-spring-xquery/src/main/resources/features.xml
(added)
+++
camel/trunk/examples/camel-example-spring-xquery/src/main/resources/features.xml
Mon Mar 22 15:01:11 2010
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<features>
+
<repository>mvn:org.apache.camel.karaf/apache-camel/${pom.version}/xml/features</repository>
+
+ <feature name='activemq-feature' version='${pom.version}'>
+
<bundle>mvn:org.apache.geronimo.specs/geronimo-jta_1.1_spec/1.1.1</bundle>
+
<bundle>mvn:org.apache.geronimo.specs/geronimo-jms_1.1_spec/1.1.1</bundle>
+
<bundle>mvn:org.apache.geronimo.specs/geronimo-j2ee-management_1.1_spec/1.0.1</bundle>
+
<bundle>mvn:org.apache.geronimo.specs/geronimo-j2ee-connector_1.5_spec/2.0.0</bundle>
+
<bundle>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-pool/1.5.4_1</bundle>
+ <bundle>mvn:org.apache.xbean/xbean-spring/3.4.3</bundle>
+ <bundle>mvn:org.apache.activemq/kahadb/${activemq-version}</bundle>
+
<bundle>mvn:org.apache.activemq/activemq-core/${activemq-version}</bundle>
+ <bundle>mvn:org.apache.activemq/activemq-ra/${activemq-version}</bundle>
+
<bundle>mvn:org.apache.activemq/activemq-pool/${activemq-version}</bundle>
+
<bundle>mvn:org.apache.activemq/activemq-camel/${activemq-version}</bundle>
+ </feature>
+
+ <feature name='camel-example-spring-xquery' version='${pom.version}'>
+ <feature version="${pom.version}">camel</feature>
+ <feature version="${pom.version}">camel-jms</feature>
+ <feature version="${pom.version}">camel-saxon</feature>
+
<bundle>mvn:org.apache.camel/camel-example-spring-xquery/${pom.version}</bundle>
+ </feature>
+
+</features>
\ No newline at end of file
Propchange:
camel/trunk/examples/camel-example-spring-xquery/src/main/resources/features.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
camel/trunk/examples/camel-example-spring-xquery/src/main/resources/features.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
camel/trunk/examples/camel-example-spring-xquery/src/main/resources/features.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Modified: camel/trunk/examples/camel-example-spring/pom.xml
URL:
http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-spring/pom.xml?rev=926113&r1=926112&r2=926113&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-spring/pom.xml (original)
+++ camel/trunk/examples/camel-example-spring/pom.xml Mon Mar 22 15:01:11 2010
@@ -1,110 +1,148 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements. See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
--->
+ <!--
+ Licensed to the Apache Software Foundation (ASF) under one or
more
+ contributor license agreements. See the NOTICE file distributed
with
+ this work for additional information regarding copyright
ownership.
+ The ASF licenses this file to You under the Apache License,
Version
+ 2.0 (the "License"); you may not use this file except in
compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0 Unless required by
+ applicable law or agreed to in writing, software distributed
under the
+ License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
OR
+ CONDITIONS OF ANY KIND, either express or implied. See the
License for
+ the specific language governing permissions and limitations
under the
+ License.
+ -->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
+ <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.apache.camel</groupId>
- <artifactId>examples</artifactId>
- <version>2.3-SNAPSHOT</version>
- </parent>
-
- <artifactId>camel-example-spring</artifactId>
- <packaging>bundle</packaging>
- <name>Camel :: Example :: Spring</name>
- <description>An example showing how to work with Camel and
Spring</description>
-
- <properties>
-
<camel.osgi.export.pkg>org.apache.camel.example.spring.*</camel.osgi.export.pkg>
-
<camel.osgi.import.additional>org.apache.activemq.xbean,org.apache.activemq.broker,org.apache.activemq.pool</camel.osgi.import.additional>
- </properties>
-
- <dependencies>
- <dependency>
- <groupId>org.apache.camel</groupId>
- <artifactId>camel-spring</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.apache.camel</groupId>
- <artifactId>camel-jms</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.apache.activemq</groupId>
- <artifactId>activemq-core</artifactId>
- </dependency>
-
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- </dependency>
-
- <!-- for testing -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
-
- </dependencies>
-
- <build>
- <plugins>
- <!-- Allows the routes to be run via 'mvn camel:run' -->
- <plugin>
- <groupId>org.apache.camel</groupId>
- <artifactId>camel-maven-plugin</artifactId>
- <version>${project.version}</version>
- </plugin>
-
- <!--
- lets make an executable jar
- you can then start this up via
-
- java -jar target/camel-example-spring-*.one-jar.jar -ac
META-INF/spring/camel-context.xml
- -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifest>
- <mainClass>org.apache.camel.spring.Main</mainClass>
- </manifest>
- </archive>
- </configuration>
- </plugin>
- </plugins>
-
- </build>
-
- <reporting>
- <plugins>
- <!-- Generates nice PNG / SVG diagrams from our routes -->
- <plugin>
- <groupId>org.apache.camel</groupId>
- <artifactId>camel-maven-plugin</artifactId>
- <version>${project.version}</version>
- </plugin>
- </plugins>
- </reporting>
+ <parent>
+ <groupId>org.apache.camel</groupId>
+ <artifactId>examples</artifactId>
+ <version>2.3-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>camel-example-spring</artifactId>
+ <packaging>bundle</packaging>
+ <name>Camel :: Example :: Spring</name>
+ <description>An example showing how to work with Camel and
Spring</description>
+
+ <properties>
+
<camel.osgi.export.pkg>org.apache.camel.example.spring.*</camel.osgi.export.pkg>
+
<camel.osgi.import.additional>org.apache.activemq.xbean,org.apache.activemq.broker,org.apache.activemq.pool</camel.osgi.import.additional>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.camel</groupId>
+ <artifactId>camel-spring</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.camel</groupId>
+ <artifactId>camel-jms</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.activemq</groupId>
+ <artifactId>activemq-core</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+
+ <!-- for testing -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ </dependencies>
+
+ <build>
+ <resources>
+ <resource>
+ <directory>src/main/resources</directory>
+ <filtering>true</filtering>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>process-resources</phase>
+ <goals>
+ <goal>resources</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+
<artifactId>build-helper-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-artifacts</id>
+ <phase>package</phase>
+ <goals>
+
<goal>attach-artifact</goal>
+ </goals>
+ <configuration>
+ <artifacts>
+ <artifact>
+
<file>target/classes/features.xml</file>
+
<type>xml</type>
+
<classifier>features</classifier>
+ </artifact>
+ </artifacts>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <!-- Allows the routes to be run via 'mvn camel:run' -->
+ <plugin>
+ <groupId>org.apache.camel</groupId>
+ <artifactId>camel-maven-plugin</artifactId>
+ <version>${project.version}</version>
+ </plugin>
+
+ <!--
+ lets make an executable jar you can then start
this up via java -jar
+ target/camel-example-spring-*.one-jar.jar -ac
+ META-INF/spring/camel-context.xml
+ -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifest>
+
<mainClass>org.apache.camel.spring.Main</mainClass>
+ </manifest>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+
+ </build>
+
+ <reporting>
+ <plugins>
+ <!-- Generates nice PNG / SVG diagrams from our routes
-->
+ <plugin>
+ <groupId>org.apache.camel</groupId>
+ <artifactId>camel-maven-plugin</artifactId>
+ <version>${project.version}</version>
+ </plugin>
+ </plugins>
+ </reporting>
</project>
Added: camel/trunk/examples/camel-example-spring/src/main/resources/features.xml
URL:
http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-spring/src/main/resources/features.xml?rev=926113&view=auto
==============================================================================
--- camel/trunk/examples/camel-example-spring/src/main/resources/features.xml
(added)
+++ camel/trunk/examples/camel-example-spring/src/main/resources/features.xml
Mon Mar 22 15:01:11 2010
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<features>
+
<repository>mvn:org.apache.camel.karaf/apache-camel/${pom.version}/xml/features</repository>
+
+ <feature name='activemq-feature' version='${pom.version}'>
+
<bundle>mvn:org.apache.geronimo.specs/geronimo-jta_1.1_spec/1.1.1</bundle>
+
<bundle>mvn:org.apache.geronimo.specs/geronimo-jms_1.1_spec/1.1.1</bundle>
+
<bundle>mvn:org.apache.geronimo.specs/geronimo-j2ee-management_1.1_spec/1.0.1</bundle>
+
<bundle>mvn:org.apache.geronimo.specs/geronimo-j2ee-connector_1.5_spec/2.0.0</bundle>
+
<bundle>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-pool/1.5.4_1</bundle>
+ <bundle>mvn:org.apache.xbean/xbean-spring/3.4.3</bundle>
+ <bundle>mvn:org.apache.activemq/kahadb/${activemq-version}</bundle>
+
<bundle>mvn:org.apache.activemq/activemq-core/${activemq-version}</bundle>
+ <bundle>mvn:org.apache.activemq/activemq-ra/${activemq-version}</bundle>
+
<bundle>mvn:org.apache.activemq/activemq-pool/${activemq-version}</bundle>
+
<bundle>mvn:org.apache.activemq/activemq-camel/${activemq-version}</bundle>
+ </feature>
+
+ <feature name='camel-example-spring' version='${pom.version}'>
+ <feature version="${pom.version}">camel</feature>
+ <feature version="${pom.version}">camel-jms</feature>
+
<bundle>mvn:org.apache.camel/camel-example-spring/${pom.version}</bundle>
+ </feature>
+
+</features>
\ No newline at end of file
Propchange:
camel/trunk/examples/camel-example-spring/src/main/resources/features.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
camel/trunk/examples/camel-example-spring/src/main/resources/features.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
camel/trunk/examples/camel-example-spring/src/main/resources/features.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Modified: camel/trunk/examples/camel-example-tracer/pom.xml
URL:
http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-tracer/pom.xml?rev=926113&r1=926112&r2=926113&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-tracer/pom.xml (original)
+++ camel/trunk/examples/camel-example-tracer/pom.xml Mon Mar 22 15:01:11 2010
@@ -82,7 +82,48 @@
</dependencies>
<build>
- <plugins>
+ <resources>
+ <resource>
+ <directory>src/main/resources</directory>
+ <filtering>true</filtering>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>process-resources</phase>
+ <goals>
+ <goal>resources</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+
<artifactId>build-helper-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-artifacts</id>
+ <phase>package</phase>
+ <goals>
+
<goal>attach-artifact</goal>
+ </goals>
+ <configuration>
+ <artifacts>
+ <artifact>
+
<file>target/classes/features.xml</file>
+
<type>xml</type>
+
<classifier>features</classifier>
+ </artifact>
+ </artifacts>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
<!-- Allows the example to be run via 'mvn camel:run' -->
<plugin>
Added: camel/trunk/examples/camel-example-tracer/src/main/resources/features.xml
URL:
http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-tracer/src/main/resources/features.xml?rev=926113&view=auto
==============================================================================
--- camel/trunk/examples/camel-example-tracer/src/main/resources/features.xml
(added)
+++ camel/trunk/examples/camel-example-tracer/src/main/resources/features.xml
Mon Mar 22 15:01:11 2010
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<features>
+
<repository>mvn:org.apache.camel.karaf/apache-camel/${pom.version}/xml/features</repository>
+ <feature name="hibernate">
+ <!-- TODO -->
+ </feature>
+
+ <feature name='camel-example-tracer' version='${pom.version}'>
+ <feature version="${pom.version}">camel</feature>
+ <feature version="${pom.version}">camel-jpa</feature>
+ <feature version="${pom.version}">camel-stream</feature>
+
<bundle>mvn:org.apache.camel/camel-example-tracer/${pom.version}</bundle>
+ </feature>
+
+</features>
\ No newline at end of file
Propchange:
camel/trunk/examples/camel-example-tracer/src/main/resources/features.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
camel/trunk/examples/camel-example-tracer/src/main/resources/features.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
camel/trunk/examples/camel-example-tracer/src/main/resources/features.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml