Author: davsclaus
Date: Tue Oct 18 07:40:52 2011
New Revision: 1185515

URL: http://svn.apache.org/viewvc?rev=1185515&view=rev
Log:
CAMEL-4557: Location of the blueprint xsd file on internet is not correct

Modified:
    camel/branches/camel-2.8.x/   (props changed)
    
camel/branches/camel-2.8.x/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/src/main/resources/OSGI-INF/blueprint/blueprint.xml

Propchange: camel/branches/camel-2.8.x/
------------------------------------------------------------------------------
    svn:mergeinfo = /camel/trunk:1185509

Propchange: camel/branches/camel-2.8.x/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: 
camel/branches/camel-2.8.x/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/branches/camel-2.8.x/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/src/main/resources/OSGI-INF/blueprint/blueprint.xml?rev=1185515&r1=1185514&r2=1185515&view=diff
==============================================================================
--- 
camel/branches/camel-2.8.x/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/src/main/resources/OSGI-INF/blueprint/blueprint.xml
 (original)
+++ 
camel/branches/camel-2.8.x/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/src/main/resources/OSGI-INF/blueprint/blueprint.xml
 Tue Oct 18 07:40:52 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"/>


Reply via email to