You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ha...@apache.org on 2010/10/17 21:26:18 UTC

svn commit: r1023563 [2/2] - in /camel/trunk: ./ apache-camel/ buildingtools/ camel-core/ components/ components/camel-amqp/ components/camel-atom/ components/camel-bam/ components/camel-bean-validator/ components/camel-bindy/ components/camel-blueprin...

Modified: camel/trunk/examples/camel-example-reportincident-ws-security-osgi/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-reportincident-ws-security-osgi/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-reportincident-ws-security-osgi/pom.xml (original)
+++ camel/trunk/examples/camel-example-reportincident-ws-security-osgi/pom.xml Sun Oct 17 19:26:14 2010
@@ -1,263 +1,263 @@
-<?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.
--->
-<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>
-
-   <parent>
-       <groupId>org.apache.camel</groupId>
-       <artifactId>examples</artifactId>
-       <version>2.5-SNAPSHOT</version>
-   </parent>
-  
-  <artifactId>camel-example-reportincident-wssecurity</artifactId>
-  <name>Camel :: Example :: Report Incident :: WS-Security</name>
-  <description>An example based on real life use case for reporting incidents using webservice that are transformed
-      and send as emails to a backing system. Client calling the WebService is authentified through WS-Security
-  </description>
-  <packaging>bundle</packaging>
-  
-	<dependencies>
-		<dependency>
-			<groupId>org.apache.camel</groupId>
-			<artifactId>camel-core</artifactId>
-		</dependency>
-
-		<dependency>
-			<groupId>org.apache.camel</groupId>
-			<artifactId>camel-spring</artifactId>
-		</dependency>
-		
-		<dependency>
-			<groupId>org.apache.camel</groupId>
-			<artifactId>camel-test</artifactId>
-			<scope>test</scope>
-		</dependency>
-
-		<dependency>
-			<groupId>org.apache.camel</groupId>
-			<artifactId>camel-cxf</artifactId>
-		</dependency>
-
-		<dependency>
-			<groupId>org.apache.camel</groupId>
-			<artifactId>camel-velocity</artifactId>
-		</dependency>
-
-		<dependency>
-			<groupId>org.apache.camel</groupId>
-			<artifactId>camel-mail</artifactId>
-		</dependency>
-		
-        <!-- mock mail server so we do not send an email for real -->
-        <dependency>
-            <groupId>org.jvnet.mock-javamail</groupId>
-            <artifactId>mock-javamail</artifactId>
-            <version>1.7</version>
-            <exclusions>
-              <exclusion>
-                <groupId>javax.mail</groupId>
-                <artifactId>mail</artifactId>
-              </exclusion>
-            </exclusions>
-            <scope>test</scope>
-        </dependency>
-        
-       <dependency>
-			<groupId>org.springframework</groupId>
-			<artifactId>spring-context-support</artifactId>
-			<scope>test</scope>
-		</dependency>
-
-		<!-- cxf -->
-		<dependency>
-			<groupId>org.apache.cxf</groupId>
-			<artifactId>cxf-rt-core</artifactId>
-			<version>${cxf-version}</version>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.cxf</groupId>
-			<artifactId>cxf-rt-frontend-jaxws</artifactId>
-			<version>${cxf-version}</version>
-		</dependency>
-
-		<!-- regular http transport -->
-		<dependency>
-			<groupId>org.apache.cxf</groupId>
-			<artifactId>cxf-rt-transports-http</artifactId>
-			<version>${cxf-version}</version>
-		</dependency>
-		
-		<!-- ws-security -->
-		<dependency>
-		    <groupId>org.apache.ws.security</groupId>
-		    <artifactId>wss4j</artifactId>
-		    <version>1.5.8</version>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.cxf</groupId>
-			<artifactId>cxf-rt-ws-security</artifactId>
-			<version>${cxf-version}</version>
-		</dependency>
-		
-		<!-- logging -->
-		<dependency>
-			<groupId>log4j</groupId>
-			<artifactId>log4j</artifactId>
-		</dependency>
-        <dependency>
-           <groupId>org.slf4j</groupId>
-           <artifactId>slf4j-log4j12</artifactId>
-         </dependency>
-
-		<!-- cxf web container for unit testing -->
-		<dependency>
-			<groupId>org.apache.cxf</groupId>
-			<artifactId>cxf-rt-transports-http-jetty</artifactId>
-			<version>${cxf-version}</version>
-		</dependency>
-
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<scope>test</scope>
-		</dependency>
-		
-		<dependency>
-			<groupId>org.apache.cxf</groupId>
-			<artifactId>cxf-rt-frontend-jaxrs</artifactId>
-			<version>${cxf-version}</version>
-			<scope>test</scope>
-		</dependency>
-		
-		<dependency>
-			<groupId>org.apache.velocity</groupId>
-			<artifactId>velocity</artifactId>
-			<version>${velocity-version}</version>
-			<scope>test</scope>
-		</dependency>
-
-	</dependencies>
-
-    <build>
-    
-        <plugins>
-
-            <!-- to compile with 1.5 -->
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <configuration>
-                    <source>1.5</source>
-                    <target>1.5</target>
-                </configuration>
-            </plugin>
-       
-            <!-- CXF wsdl2java generator, will plugin to the compile goal -->
-            <plugin>
-                <groupId>org.apache.cxf</groupId>
-                <artifactId>cxf-codegen-plugin</artifactId>
-                <version>${cxf-version}</version>
-                <executions>
-                    <execution>
-                        <id>generate-sources</id>
-                        <phase>generate-sources</phase>
-                        <configuration>
-                            <sourceRoot>${basedir}/target/generated/src/main/java</sourceRoot>
-                            <wsdlOptions>
-                                <wsdlOption>
-                                    <wsdl>${basedir}/src/main/resources/etc/report_incident.wsdl</wsdl>
-                                </wsdlOption>
-                            </wsdlOptions>
-                        </configuration>
-                        <goals>
-                            <goal>wsdl2java</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-
-            <!-- so we can run mvn jetty:run -->
-            <plugin>
-                <groupId>org.mortbay.jetty</groupId>
-                <artifactId>jetty-maven-plugin</artifactId>
-                <version>${jetty-version}</version>
-                <configuration>
-                   <connectors>
-                      <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
-                        <port>9080</port>
-                        <maxIdleTime>60000</maxIdleTime>
-                      </connector>
-                   </connectors>                   
-                </configuration>
-            </plugin>
-            
-            <!-- to generate the MANIFEST-FILE of the bundle -->
-			<plugin>
-				<groupId>org.apache.felix</groupId>
-				<artifactId>maven-bundle-plugin</artifactId>
-				<extensions>true</extensions>
-				<configuration>
-					<manifestLocation>META-INF</manifestLocation>
-					<instructions>
-						<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
-						<Export-Package>org.apache.camel.example.reportincident*</Export-Package>
-						<Import-Package>
-						    META-INF.cxf,
-				  			org.apache.cxf,
-							org.apache.cxf.binding,
-							org.apache.cxf.binding.corba,
-							org.apache.cxf.binding.soap,
-							org.apache.cxf.binding.soap.spring,
-							org.apache.cxf.bus,
-							org.apache.cxf.bus.resource,
-							org.apache.cxf.bus.spring,
-							org.apache.cxf.buslifecycle,
-							org.apache.cxf.catalog,
-							org.apache.cxf.configuration,
-							org.apache.cxf.configuration.spring,
-							org.apache.cxf.endpoint,
-							org.apache.cxf.headers,
-							org.apache.cxf.management,
-							org.apache.cxf.management.jmx,
-							org.apache.cxf.phase,
-							org.apache.cxf.resource,
-							org.apache.cxf.transport,
-							org.apache.cxf.transport.http,
-							org.apache.cxf.transport.http.policy,
-							org.apache.cxf.transport.http_jetty,
-							org.apache.cxf.transport.http_osgi,
-							org.apache.cxf.transport.jms,
-							org.apache.cxf.transports.http,
-							org.apache.cxf.workqueue,
-							org.apache.cxf.wsdl,
-							org.apache.cxf.wsdl11,
-							org.apache.ws.security.action,
-							org.apache.ws.security.processor,
-							org.springframework.beans.factory.config,
-							org.springframework.mail.javamail,
-						    *
-					    </Import-Package>
-					</instructions>
-				</configuration>
-			</plugin>
-
-        </plugins>
-    </build>
-
-</project>
+<?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.
+-->
+<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>
+
+   <parent>
+       <groupId>org.apache.camel</groupId>
+       <artifactId>examples</artifactId>
+       <version>2.5.0</version>
+   </parent>
+  
+  <artifactId>camel-example-reportincident-wssecurity</artifactId>
+  <name>Camel :: Example :: Report Incident :: WS-Security</name>
+  <description>An example based on real life use case for reporting incidents using webservice that are transformed
+      and send as emails to a backing system. Client calling the WebService is authentified through WS-Security
+  </description>
+  <packaging>bundle</packaging>
+  
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.camel</groupId>
+			<artifactId>camel-core</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.camel</groupId>
+			<artifactId>camel-spring</artifactId>
+		</dependency>
+		
+		<dependency>
+			<groupId>org.apache.camel</groupId>
+			<artifactId>camel-test</artifactId>
+			<scope>test</scope>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.camel</groupId>
+			<artifactId>camel-cxf</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.camel</groupId>
+			<artifactId>camel-velocity</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.camel</groupId>
+			<artifactId>camel-mail</artifactId>
+		</dependency>
+		
+        <!-- mock mail server so we do not send an email for real -->
+        <dependency>
+            <groupId>org.jvnet.mock-javamail</groupId>
+            <artifactId>mock-javamail</artifactId>
+            <version>1.7</version>
+            <exclusions>
+              <exclusion>
+                <groupId>javax.mail</groupId>
+                <artifactId>mail</artifactId>
+              </exclusion>
+            </exclusions>
+            <scope>test</scope>
+        </dependency>
+        
+       <dependency>
+			<groupId>org.springframework</groupId>
+			<artifactId>spring-context-support</artifactId>
+			<scope>test</scope>
+		</dependency>
+
+		<!-- cxf -->
+		<dependency>
+			<groupId>org.apache.cxf</groupId>
+			<artifactId>cxf-rt-core</artifactId>
+			<version>${cxf-version}</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.cxf</groupId>
+			<artifactId>cxf-rt-frontend-jaxws</artifactId>
+			<version>${cxf-version}</version>
+		</dependency>
+
+		<!-- regular http transport -->
+		<dependency>
+			<groupId>org.apache.cxf</groupId>
+			<artifactId>cxf-rt-transports-http</artifactId>
+			<version>${cxf-version}</version>
+		</dependency>
+		
+		<!-- ws-security -->
+		<dependency>
+		    <groupId>org.apache.ws.security</groupId>
+		    <artifactId>wss4j</artifactId>
+		    <version>1.5.8</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.cxf</groupId>
+			<artifactId>cxf-rt-ws-security</artifactId>
+			<version>${cxf-version}</version>
+		</dependency>
+		
+		<!-- logging -->
+		<dependency>
+			<groupId>log4j</groupId>
+			<artifactId>log4j</artifactId>
+		</dependency>
+        <dependency>
+           <groupId>org.slf4j</groupId>
+           <artifactId>slf4j-log4j12</artifactId>
+         </dependency>
+
+		<!-- cxf web container for unit testing -->
+		<dependency>
+			<groupId>org.apache.cxf</groupId>
+			<artifactId>cxf-rt-transports-http-jetty</artifactId>
+			<version>${cxf-version}</version>
+		</dependency>
+
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<scope>test</scope>
+		</dependency>
+		
+		<dependency>
+			<groupId>org.apache.cxf</groupId>
+			<artifactId>cxf-rt-frontend-jaxrs</artifactId>
+			<version>${cxf-version}</version>
+			<scope>test</scope>
+		</dependency>
+		
+		<dependency>
+			<groupId>org.apache.velocity</groupId>
+			<artifactId>velocity</artifactId>
+			<version>${velocity-version}</version>
+			<scope>test</scope>
+		</dependency>
+
+	</dependencies>
+
+    <build>
+    
+        <plugins>
+
+            <!-- to compile with 1.5 -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                </configuration>
+            </plugin>
+       
+            <!-- CXF wsdl2java generator, will plugin to the compile goal -->
+            <plugin>
+                <groupId>org.apache.cxf</groupId>
+                <artifactId>cxf-codegen-plugin</artifactId>
+                <version>${cxf-version}</version>
+                <executions>
+                    <execution>
+                        <id>generate-sources</id>
+                        <phase>generate-sources</phase>
+                        <configuration>
+                            <sourceRoot>${basedir}/target/generated/src/main/java</sourceRoot>
+                            <wsdlOptions>
+                                <wsdlOption>
+                                    <wsdl>${basedir}/src/main/resources/etc/report_incident.wsdl</wsdl>
+                                </wsdlOption>
+                            </wsdlOptions>
+                        </configuration>
+                        <goals>
+                            <goal>wsdl2java</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <!-- so we can run mvn jetty:run -->
+            <plugin>
+                <groupId>org.mortbay.jetty</groupId>
+                <artifactId>jetty-maven-plugin</artifactId>
+                <version>${jetty-version}</version>
+                <configuration>
+                   <connectors>
+                      <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
+                        <port>9080</port>
+                        <maxIdleTime>60000</maxIdleTime>
+                      </connector>
+                   </connectors>                   
+                </configuration>
+            </plugin>
+            
+            <!-- to generate the MANIFEST-FILE of the bundle -->
+			<plugin>
+				<groupId>org.apache.felix</groupId>
+				<artifactId>maven-bundle-plugin</artifactId>
+				<extensions>true</extensions>
+				<configuration>
+					<manifestLocation>META-INF</manifestLocation>
+					<instructions>
+						<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+						<Export-Package>org.apache.camel.example.reportincident*</Export-Package>
+						<Import-Package>
+						    META-INF.cxf,
+				  			org.apache.cxf,
+							org.apache.cxf.binding,
+							org.apache.cxf.binding.corba,
+							org.apache.cxf.binding.soap,
+							org.apache.cxf.binding.soap.spring,
+							org.apache.cxf.bus,
+							org.apache.cxf.bus.resource,
+							org.apache.cxf.bus.spring,
+							org.apache.cxf.buslifecycle,
+							org.apache.cxf.catalog,
+							org.apache.cxf.configuration,
+							org.apache.cxf.configuration.spring,
+							org.apache.cxf.endpoint,
+							org.apache.cxf.headers,
+							org.apache.cxf.management,
+							org.apache.cxf.management.jmx,
+							org.apache.cxf.phase,
+							org.apache.cxf.resource,
+							org.apache.cxf.transport,
+							org.apache.cxf.transport.http,
+							org.apache.cxf.transport.http.policy,
+							org.apache.cxf.transport.http_jetty,
+							org.apache.cxf.transport.http_osgi,
+							org.apache.cxf.transport.jms,
+							org.apache.cxf.transports.http,
+							org.apache.cxf.workqueue,
+							org.apache.cxf.wsdl,
+							org.apache.cxf.wsdl11,
+							org.apache.ws.security.action,
+							org.apache.ws.security.processor,
+							org.springframework.beans.factory.config,
+							org.springframework.mail.javamail,
+						    *
+					    </Import-Package>
+					</instructions>
+				</configuration>
+			</plugin>
+
+        </plugins>
+    </build>
+
+</project>

Modified: camel/trunk/examples/camel-example-reportincident/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-reportincident/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-reportincident/pom.xml (original)
+++ camel/trunk/examples/camel-example-reportincident/pom.xml Sun Oct 17 19:26:14 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.camel</groupId>
         <artifactId>examples</artifactId>
-        <version>2.5-SNAPSHOT</version>
+        <version>2.5.0</version>
     </parent>
 
     <artifactId>camel-example-reportincident</artifactId>

Modified: camel/trunk/examples/camel-example-route-throttling/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-route-throttling/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-route-throttling/pom.xml (original)
+++ camel/trunk/examples/camel-example-route-throttling/pom.xml Sun Oct 17 19:26:14 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.camel</groupId>
         <artifactId>examples</artifactId>
-        <version>2.5-SNAPSHOT</version>
+        <version>2.5.0</version>
     </parent>
 
     <artifactId>camel-example-route-throttling</artifactId>

Modified: camel/trunk/examples/camel-example-spring-javaconfig/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-spring-javaconfig/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-spring-javaconfig/pom.xml (original)
+++ camel/trunk/examples/camel-example-spring-javaconfig/pom.xml Sun Oct 17 19:26:14 2010
@@ -23,7 +23,7 @@
 	<parent>
 		<groupId>org.apache.camel</groupId>
 		<artifactId>examples</artifactId>
-		<version>2.5-SNAPSHOT</version>
+		<version>2.5.0</version>
 	</parent>
 
 	<artifactId>camel-example-spring-javaconfig</artifactId>

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=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-spring-jms/pom.xml (original)
+++ camel/trunk/examples/camel-example-spring-jms/pom.xml Sun Oct 17 19:26:14 2010
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.camel</groupId>
         <artifactId>examples</artifactId>
-        <version>2.5-SNAPSHOT</version>
+        <version>2.5.0</version>
     </parent>
 
     <artifactId>camel-example-spring-jms</artifactId>

Modified: camel/trunk/examples/camel-example-spring-security/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-spring-security/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-spring-security/pom.xml (original)
+++ camel/trunk/examples/camel-example-spring-security/pom.xml Sun Oct 17 19:26:14 2010
@@ -23,7 +23,7 @@
 	<parent>
 		<groupId>org.apache.camel</groupId>
 		<artifactId>examples</artifactId>
-		<version>2.5-SNAPSHOT</version>
+		<version>2.5.0</version>
 	</parent>
 
 	<artifactId>camel-example-spring-security</artifactId>

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=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-spring-xquery/pom.xml (original)
+++ camel/trunk/examples/camel-example-spring-xquery/pom.xml Sun Oct 17 19:26:14 2010
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>examples</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <artifactId>camel-example-spring-xquery</artifactId>

Modified: camel/trunk/examples/camel-example-spring/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-spring/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-spring/pom.xml (original)
+++ camel/trunk/examples/camel-example-spring/pom.xml Sun Oct 17 19:26:14 2010
@@ -23,7 +23,7 @@
 	<parent>
 		<groupId>org.apache.camel</groupId>
 		<artifactId>examples</artifactId>
-		<version>2.5-SNAPSHOT</version>
+		<version>2.5.0</version>
 	</parent>
 
 	<artifactId>camel-example-spring</artifactId>

Modified: camel/trunk/examples/camel-example-tracer/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-tracer/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-tracer/pom.xml (original)
+++ camel/trunk/examples/camel-example-tracer/pom.xml Sun Oct 17 19:26:14 2010
@@ -24,7 +24,7 @@
     <parent>
         <groupId>org.apache.camel</groupId>
         <artifactId>examples</artifactId>
-        <version>2.5-SNAPSHOT</version>
+        <version>2.5.0</version>
     </parent>
 
     <artifactId>camel-example-tracer</artifactId>

Modified: camel/trunk/examples/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/examples/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/examples/pom.xml (original)
+++ camel/trunk/examples/pom.xml Sun Oct 17 19:26:14 2010
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>camel-parent</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <artifactId>examples</artifactId>

Modified: camel/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/parent/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/parent/pom.xml (original)
+++ camel/trunk/parent/pom.xml Sun Oct 17 19:26:14 2010
@@ -20,14 +20,14 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>camel</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>
 
   <groupId>org.apache.camel</groupId>
   <artifactId>camel-parent</artifactId>
-  <version>2.5-SNAPSHOT</version>
+  <version>2.5.0</version>
   <packaging>pom</packaging>
   <name>Camel :: Parent</name>
   <description>Camel Parent POM</description>

Modified: camel/trunk/platforms/karaf/features/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/platforms/karaf/features/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/platforms/karaf/features/pom.xml (original)
+++ camel/trunk/platforms/karaf/features/pom.xml Sun Oct 17 19:26:14 2010
@@ -24,13 +24,13 @@
     <parent>
         <groupId>org.apache.camel</groupId>
         <artifactId>karaf</artifactId>
-        <version>2.5-SNAPSHOT</version>
+        <version>2.5.0</version>
     </parent>
 
     <groupId>org.apache.camel.karaf</groupId>
     <artifactId>apache-camel</artifactId>
     <packaging>pom</packaging>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
     <name>Camel :: Platforms :: Apache Karaf :: Features</name>
 
     <!-- some of the bundles is located at: http://repo1.maven.org/maven2/org/apache/servicemix/bundles/ -->

Modified: camel/trunk/platforms/karaf/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/platforms/karaf/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/platforms/karaf/pom.xml (original)
+++ camel/trunk/platforms/karaf/pom.xml Sun Oct 17 19:26:14 2010
@@ -24,13 +24,13 @@
     <parent>
         <groupId>org.apache.camel</groupId>
         <artifactId>platforms</artifactId>
-        <version>2.5-SNAPSHOT</version>
+        <version>2.5.0</version>
     </parent>
 
     <groupId>org.apache.camel</groupId>
     <artifactId>karaf</artifactId>
     <packaging>pom</packaging>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
     <name>Camel :: Platforms :: Apache Karaf</name>
 
     <properties>

Modified: camel/trunk/platforms/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/platforms/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/platforms/pom.xml (original)
+++ camel/trunk/platforms/pom.xml Sun Oct 17 19:26:14 2010
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>camel-parent</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <artifactId>platforms</artifactId>

Modified: camel/trunk/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/pom.xml (original)
+++ camel/trunk/pom.xml Sun Oct 17 19:26:14 2010
@@ -28,7 +28,7 @@
 
   <groupId>org.apache.camel</groupId>
   <artifactId>camel</artifactId>
-  <version>2.5-SNAPSHOT</version>
+  <version>2.5.0</version>
   <packaging>pom</packaging>
   <name>Camel</name>
   <description>Camel build POM</description>
@@ -96,9 +96,9 @@
   </modules>
 
   <scm>
-    <connection>scm:svn:https://svn.apache.org/repos/asf/camel/trunk</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/camel/trunk</developerConnection>
-    <url>http://svn.apache.org/viewvc/camel/trunk/</url>
+    <connection>scm:svn:https://svn.apache.org/repos/asf/camel/tags/camel-2.5.0</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/camel/tags/camel-2.5.0</developerConnection>
+    <url>http://svn.apache.org/viewvc/camel/tags/camel-2.5.0</url>
   </scm>
 
   <build>

Modified: camel/trunk/tests/camel-itest-osgi/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tests/camel-itest-osgi/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tests/camel-itest-osgi/pom.xml (original)
+++ camel/trunk/tests/camel-itest-osgi/pom.xml Sun Oct 17 19:26:14 2010
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>camel-parent</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <artifactId>camel-itest-osgi</artifactId>

Modified: camel/trunk/tests/camel-itest-spring-2.0/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tests/camel-itest-spring-2.0/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tests/camel-itest-spring-2.0/pom.xml (original)
+++ camel/trunk/tests/camel-itest-spring-2.0/pom.xml Sun Oct 17 19:26:14 2010
@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>org.apache.camel</groupId>
 		<artifactId>camel-parent</artifactId>
-		<version>2.5-SNAPSHOT</version>
+		<version>2.5.0</version>
 	</parent>
 
 	<artifactId>camel-itest-spring-2.0</artifactId>

Modified: camel/trunk/tests/camel-itest-spring-2.5/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tests/camel-itest-spring-2.5/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tests/camel-itest-spring-2.5/pom.xml (original)
+++ camel/trunk/tests/camel-itest-spring-2.5/pom.xml Sun Oct 17 19:26:14 2010
@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>org.apache.camel</groupId>
 		<artifactId>camel-parent</artifactId>
-		<version>2.5-SNAPSHOT</version>
+		<version>2.5.0</version>
 	</parent>
 
 	<artifactId>camel-itest-spring-2.5</artifactId>

Modified: camel/trunk/tests/camel-itest/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tests/camel-itest/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tests/camel-itest/pom.xml (original)
+++ camel/trunk/tests/camel-itest/pom.xml Sun Oct 17 19:26:14 2010
@@ -24,7 +24,7 @@
     <parent>
         <groupId>org.apache.camel</groupId>
         <artifactId>camel-parent</artifactId>
-        <version>2.5-SNAPSHOT</version>
+        <version>2.5.0</version>
     </parent>
 
     <artifactId>camel-itest</artifactId>

Modified: camel/trunk/tests/camel-partial-classpath-test/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tests/camel-partial-classpath-test/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tests/camel-partial-classpath-test/pom.xml (original)
+++ camel/trunk/tests/camel-partial-classpath-test/pom.xml Sun Oct 17 19:26:14 2010
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>camel-parent</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <artifactId>camel-partial-classpath-test</artifactId>

Modified: camel/trunk/tests/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tests/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tests/pom.xml (original)
+++ camel/trunk/tests/pom.xml Sun Oct 17 19:26:14 2010
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>camel-parent</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <artifactId>tests</artifactId>

Modified: camel/trunk/tests/test-bundles/mock-javamail_1.7/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tests/test-bundles/mock-javamail_1.7/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tests/test-bundles/mock-javamail_1.7/pom.xml (original)
+++ camel/trunk/tests/test-bundles/mock-javamail_1.7/pom.xml Sun Oct 17 19:26:14 2010
@@ -23,12 +23,12 @@
     <parent>
         <groupId>org.apache.camel.tests.bundles</groupId>
         <artifactId>bundles-pom</artifactId>
-        <version>2.5-SNAPSHOT</version>
+        <version>2.5.0</version>
     </parent>
 
     <groupId>org.apache.camel.tests</groupId>
     <artifactId>org.apache.camel.tests.mock-javamail_1.7</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
     <packaging>bundle</packaging>
     <name>Camel :: Test Bundles: ${pkgArtifactId}-${pkgVersion}</name>
     <description>

Modified: camel/trunk/tests/test-bundles/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tests/test-bundles/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tests/test-bundles/pom.xml (original)
+++ camel/trunk/tests/test-bundles/pom.xml Sun Oct 17 19:26:14 2010
@@ -23,13 +23,13 @@
     <parent>
       <groupId>org.apache.camel</groupId>
       <artifactId>camel-parent</artifactId>
-      <version>2.5-SNAPSHOT</version>
+      <version>2.5.0</version>
     </parent>
 
     <groupId>org.apache.camel.tests.bundles</groupId>
     <artifactId>bundles-pom</artifactId>
     <packaging>pom</packaging>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
     <name>Camel :: Tests Bundles</name>
 
     <properties>

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=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tooling/archetypes/camel-archetype-activemq/pom.xml (original)
+++ camel/trunk/tooling/archetypes/camel-archetype-activemq/pom.xml Sun Oct 17 19:26:14 2010
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>camel-parent</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <groupId>org.apache.camel.archetypes</groupId>

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=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tooling/archetypes/camel-archetype-component/pom.xml (original)
+++ camel/trunk/tooling/archetypes/camel-archetype-component/pom.xml Sun Oct 17 19:26:14 2010
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>camel-parent</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <groupId>org.apache.camel.archetypes</groupId>

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=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tooling/archetypes/camel-archetype-java/pom.xml (original)
+++ camel/trunk/tooling/archetypes/camel-archetype-java/pom.xml Sun Oct 17 19:26:14 2010
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>camel-parent</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <groupId>org.apache.camel.archetypes</groupId>

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=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tooling/archetypes/camel-archetype-scala/pom.xml (original)
+++ camel/trunk/tooling/archetypes/camel-archetype-scala/pom.xml Sun Oct 17 19:26:14 2010
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>camel-parent</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <groupId>org.apache.camel.archetypes</groupId>

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=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tooling/archetypes/camel-archetype-spring/pom.xml (original)
+++ camel/trunk/tooling/archetypes/camel-archetype-spring/pom.xml Sun Oct 17 19:26:14 2010
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>camel-parent</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <groupId>org.apache.camel.archetypes</groupId>

Modified: camel/trunk/tooling/archetypes/camel-archetype-war/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tooling/archetypes/camel-archetype-war/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tooling/archetypes/camel-archetype-war/pom.xml (original)
+++ camel/trunk/tooling/archetypes/camel-archetype-war/pom.xml Sun Oct 17 19:26:14 2010
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>camel-parent</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <groupId>org.apache.camel.archetypes</groupId>

Modified: camel/trunk/tooling/archetypes/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tooling/archetypes/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tooling/archetypes/pom.xml (original)
+++ camel/trunk/tooling/archetypes/pom.xml Sun Oct 17 19:26:14 2010
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>camel-parent</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <artifactId>archetypes</artifactId>

Modified: camel/trunk/tooling/camel-manual/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tooling/camel-manual/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tooling/camel-manual/pom.xml (original)
+++ camel/trunk/tooling/camel-manual/pom.xml Sun Oct 17 19:26:14 2010
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>camel-parent</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <artifactId>camel-manual</artifactId>

Modified: camel/trunk/tooling/maven/camel-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tooling/maven/camel-maven-plugin/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tooling/maven/camel-maven-plugin/pom.xml (original)
+++ camel/trunk/tooling/maven/camel-maven-plugin/pom.xml Sun Oct 17 19:26:14 2010
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>maven-plugins</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <artifactId>camel-maven-plugin</artifactId>

Modified: camel/trunk/tooling/maven/guice-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tooling/maven/guice-maven-plugin/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tooling/maven/guice-maven-plugin/pom.xml (original)
+++ camel/trunk/tooling/maven/guice-maven-plugin/pom.xml Sun Oct 17 19:26:14 2010
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>maven-plugins</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <artifactId>guice-maven-plugin</artifactId>

Modified: camel/trunk/tooling/maven/maven-html-to-pdf/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tooling/maven/maven-html-to-pdf/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tooling/maven/maven-html-to-pdf/pom.xml (original)
+++ camel/trunk/tooling/maven/maven-html-to-pdf/pom.xml Sun Oct 17 19:26:14 2010
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>maven-plugins</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <artifactId>maven-html-to-pdf</artifactId>

Modified: camel/trunk/tooling/maven/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tooling/maven/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tooling/maven/pom.xml (original)
+++ camel/trunk/tooling/maven/pom.xml Sun Oct 17 19:26:14 2010
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>camel-parent</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
   </parent>
 
   <artifactId>maven-plugins</artifactId>

Modified: camel/trunk/tooling/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tooling/pom.xml?rev=1023563&r1=1023562&r2=1023563&view=diff
==============================================================================
--- camel/trunk/tooling/pom.xml (original)
+++ camel/trunk/tooling/pom.xml Sun Oct 17 19:26:14 2010
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.camel</groupId>
     <artifactId>camel-parent</artifactId>
-    <version>2.5-SNAPSHOT</version>
+    <version>2.5.0</version>
     <relativePath>../parent</relativePath>
   </parent>