Author: cmoulliard
Date: Tue Oct 18 06:59:25 2011
New Revision: 1185509
URL: http://svn.apache.org/viewvc?rev=1185509&view=rev
Log:
CAMEL-4557: Location of the blueprint xsd file on internet is not correct
Modified:
camel/trunk/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/src/main/resources/OSGI-INF/blueprint/blueprint.xml
Modified:
camel/trunk/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/src/main/resources/OSGI-INF/blueprint/blueprint.xml
URL:
http://svn.apache.org/viewvc/camel/trunk/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/src/main/resources/OSGI-INF/blueprint/blueprint.xml?rev=1185509&r1=1185508&r2=1185509&view=diff
==============================================================================
---
camel/trunk/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/src/main/resources/OSGI-INF/blueprint/blueprint.xml
(original)
+++
camel/trunk/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/src/main/resources/OSGI-INF/blueprint/blueprint.xml
Tue Oct 18 06:59:25 2011
@@ -21,14 +21,14 @@
xmlns:camel="http://camel.apache.org/schema/blueprint"
xsi:schemaLocation="
http://www.osgi.org/xmlns/blueprint/v1.0.0
http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd
- http://camel.apache.org/schema/blueprint
http://camel.apache.org/schema/spring/camel-blueprint.xsd">
+ http://camel.apache.org/schema/blueprint
http://camel.apache.org/schema/blueprint/camel-blueprint.xsd">
<bean id="helloBean" class="${package}.HelloBean">
<property name="say" value="Hi from Camel"/>
</bean>
- <camelContext xmlns="http://camel.apache.org/schema/blueprint">
- <route>
+ <camelContext id="blueprintContext" trace="false"
xmlns="http://camel.apache.org/schema/blueprint">
+ <route id="timerToLog">
<from uri="timer:foo?period=5000"/>
<setBody>
<method ref="helloBean" method="hello"/>