You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by cm...@apache.org on 2010/04/23 11:20:31 UTC

svn commit: r937205 - in /camel/trunk/examples/camel-example-loadbalancing-mina: loadbalancing/pom.xml mina1/pom.xml mina2/pom.xml

Author: cmoulliard
Date: Fri Apr 23 09:20:31 2010
New Revision: 937205

URL: http://svn.apache.org/viewvc?rev=937205&view=rev
Log:
Change version of camel --> 2.3-SNAPSHOT

Modified:
    camel/trunk/examples/camel-example-loadbalancing-mina/loadbalancing/pom.xml
    camel/trunk/examples/camel-example-loadbalancing-mina/mina1/pom.xml
    camel/trunk/examples/camel-example-loadbalancing-mina/mina2/pom.xml

Modified: camel/trunk/examples/camel-example-loadbalancing-mina/loadbalancing/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-loadbalancing-mina/loadbalancing/pom.xml?rev=937205&r1=937204&r2=937205&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-loadbalancing-mina/loadbalancing/pom.xml (original)
+++ camel/trunk/examples/camel-example-loadbalancing-mina/loadbalancing/pom.xml Fri Apr 23 09:20:31 2010
@@ -1,38 +1,43 @@
 <?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>
+<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">
 
-  <groupId>org.apache.camel.example</groupId>
-  <artifactId>loadbalancing</artifactId>
-  <packaging>jar</packaging>
-  <version>1.0-SNAPSHOT</version>
-
-  <name>A Camel Route</name>
-  <url>http://www.myorganization.org</url>
-
-  <properties>
-    <camel-version>2.2.0</camel-version>
-    <log4j-version>1.2.14</log4j-version>
-  </properties>
+	<modelVersion>4.0.0</modelVersion>
+	
+	<parent>
+	    <groupId>org.apache.camel</groupId>
+	    <artifactId>examples</artifactId>
+	    <version>2.3-SNAPSHOT</version>
+	</parent>
+	
+	<properties>
+		<camel-version>2.3-SNAPSHOT</camel-version>
+	</properties>
+
+	<groupId>org.apache.camel.example</groupId>
+	<artifactId>loadbalancing</artifactId>
+	<packaging>jar</packaging>
+	<version>1.0-SNAPSHOT</version>
+	
+	<name>Camel :: Example :: Loadbancing - camel-mina</name>
+	<description>An example that show loadbalancing with mina servers (TCP/IP)</description>
 
   <dependencies>
     <dependency>
@@ -53,7 +58,6 @@
     <dependency>
       <groupId>log4j</groupId> 
       <artifactId>log4j</artifactId> 
-      <version>${log4j-version}</version> 
     </dependency>
 	<dependency>
 	  <groupId>org.slf4j</groupId>
@@ -84,7 +88,6 @@
       <plugin>
         <groupId>org.apache.camel</groupId>
         <artifactId>camel-maven-plugin</artifactId>
-        <version>${camel-version}</version>
       </plugin>
 
     </plugins>

Modified: camel/trunk/examples/camel-example-loadbalancing-mina/mina1/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-loadbalancing-mina/mina1/pom.xml?rev=937205&r1=937204&r2=937205&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-loadbalancing-mina/mina1/pom.xml (original)
+++ camel/trunk/examples/camel-example-loadbalancing-mina/mina1/pom.xml Fri Apr 23 09:20:31 2010
@@ -1,38 +1,43 @@
 <?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>
+<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">
 
-  <groupId>org.apache.camel.example</groupId>
-  <artifactId>mina1</artifactId>
-  <packaging>jar</packaging>
-  <version>1.0-SNAPSHOT</version>
-
-  <name>A Camel Route</name>
-  <url>http://www.myorganization.org</url>
-
-  <properties>
-    <camel-version>2.2.0</camel-version>
-    <log4j-version>1.2.14</log4j-version>
-  </properties>
+	<modelVersion>4.0.0</modelVersion>
+	
+	<parent>
+	    <groupId>org.apache.camel</groupId>
+	    <artifactId>examples</artifactId>
+	    <version>2.3-SNAPSHOT</version>
+	</parent>
+
+	<groupId>org.apache.camel.example</groupId>
+	<artifactId>mina1</artifactId>
+	<packaging>jar</packaging>
+	<version>1.0-SNAPSHOT</version>
+	
+	<name>Camel :: Example :: Loadbancing - camel-mina</name>
+	<description>An example that show loadbalancing with mina servers (TCP/IP)</description>
+	
+	<properties>
+		<camel-version>2.3-SNAPSHOT</camel-version>
+	</properties>
 
   <dependencies>
   	<dependency>
@@ -58,7 +63,6 @@
     <dependency>
       <groupId>log4j</groupId> 
       <artifactId>log4j</artifactId> 
-      <version>${log4j-version}</version> 
     </dependency>
 	<dependency>
 	  <groupId>org.slf4j</groupId>
@@ -89,7 +93,6 @@
       <plugin>
         <groupId>org.apache.camel</groupId>
         <artifactId>camel-maven-plugin</artifactId>
-        <version>${camel-version}</version>
       </plugin>
 
     </plugins>

Modified: camel/trunk/examples/camel-example-loadbalancing-mina/mina2/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-loadbalancing-mina/mina2/pom.xml?rev=937205&r1=937204&r2=937205&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-loadbalancing-mina/mina2/pom.xml (original)
+++ camel/trunk/examples/camel-example-loadbalancing-mina/mina2/pom.xml Fri Apr 23 09:20:31 2010
@@ -1,38 +1,43 @@
 <?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>
+<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">
 
-  <groupId>org.apache.camel.example</groupId>
-  <artifactId>mina2</artifactId>
-  <packaging>jar</packaging>
-  <version>1.0-SNAPSHOT</version>
-
-  <name>A Camel Route</name>
-  <url>http://www.myorganization.org</url>
-
-  <properties>
-    <camel-version>2.2.0</camel-version>
-    <log4j-version>1.2.14</log4j-version>
-  </properties>
+	<modelVersion>4.0.0</modelVersion>
+	
+	<parent>
+	    <groupId>org.apache.camel</groupId>
+	    <artifactId>examples</artifactId>
+	    <version>2.3-SNAPSHOT</version>
+	</parent>
+
+	<groupId>org.apache.camel.example</groupId>
+	<artifactId>mina2</artifactId>
+	<packaging>jar</packaging>
+	<version>1.0-SNAPSHOT</version>
+	
+	<name>Camel :: Example :: Loadbancing - camel-mina</name>
+	<description>An example that show loadbalancing with mina servers (TCP/IP)</description>
+	
+	<properties>
+		<camel-version>2.3-SNAPSHOT</camel-version>
+	</properties>
 
   <dependencies>
   	<dependency>
@@ -58,7 +63,6 @@
     <dependency>
       <groupId>log4j</groupId> 
       <artifactId>log4j</artifactId> 
-      <version>${log4j-version}</version> 
     </dependency>
 	<dependency>
 	  <groupId>org.slf4j</groupId>
@@ -89,7 +93,6 @@
       <plugin>
         <groupId>org.apache.camel</groupId>
         <artifactId>camel-maven-plugin</artifactId>
-        <version>${camel-version}</version>
       </plugin>
 
     </plugins>