You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by gn...@apache.org on 2007/03/19 20:40:02 UTC

svn commit: r520062 - in /activemq/camel/trunk: ./ camel-jbi/ camel-jbi/src/ camel-jbi/src/main/ camel-jbi/src/main/java/ camel-jbi/src/main/java/org/ camel-jbi/src/main/java/org/apache/ camel-jbi/src/main/java/org/apache/camel/ camel-jbi/src/main/java...

Author: gnodet
Date: Mon Mar 19 12:40:01 2007
New Revision: 520062

URL: http://svn.apache.org/viewvc?view=rev&rev=520062
Log:
Check in draft implementation of camel-jbi

Added:
    activemq/camel/trunk/camel-jbi/
    activemq/camel/trunk/camel-jbi/pom.xml   (with props)
    activemq/camel/trunk/camel-jbi/src/
    activemq/camel/trunk/camel-jbi/src/main/
    activemq/camel/trunk/camel-jbi/src/main/java/
    activemq/camel/trunk/camel-jbi/src/main/java/org/
    activemq/camel/trunk/camel-jbi/src/main/java/org/apache/
    activemq/camel/trunk/camel-jbi/src/main/java/org/apache/camel/
    activemq/camel/trunk/camel-jbi/src/main/java/org/apache/camel/jbi/
    activemq/camel/trunk/camel-jbi/src/test/
    activemq/camel/trunk/camel-jbi/src/test/java/
    activemq/camel/trunk/camel-jbi/src/test/java/org/
    activemq/camel/trunk/camel-jbi/src/test/java/org/apache/
    activemq/camel/trunk/camel-jbi/src/test/java/org/apache/camel/
    activemq/camel/trunk/camel-jbi/src/test/java/org/apache/camel/jbi/
Modified:
    activemq/camel/trunk/pom.xml

Added: activemq/camel/trunk/camel-jbi/pom.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/camel-jbi/pom.xml?view=auto&rev=520062
==============================================================================
--- activemq/camel/trunk/camel-jbi/pom.xml (added)
+++ activemq/camel/trunk/camel-jbi/pom.xml Mon Mar 19 12:40:01 2007
@@ -0,0 +1,63 @@
+<?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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.camel</groupId>
+    <artifactId>camel-parent</artifactId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>camel-jbi</artifactId>
+  <name>Camel :: JBI</name>
+  <description>Camel JBI support</description>
+
+  <dependencies>
+
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-core</artifactId>
+      <version>1.0-SNAPSHOT</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.servicemix</groupId>
+      <artifactId>servicemix-jbi</artifactId>
+      <version>3.1-incubating</version>
+    </dependency>
+
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <optional>false</optional>
+    </dependency>
+
+
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+</project>

Propchange: activemq/camel/trunk/camel-jbi/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: activemq/camel/trunk/camel-jbi/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: activemq/camel/trunk/camel-jbi/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: activemq/camel/trunk/pom.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/pom.xml?view=diff&rev=520062&r1=520061&r2=520062
==============================================================================
--- activemq/camel/trunk/pom.xml (original)
+++ activemq/camel/trunk/pom.xml Mon Mar 19 12:40:01 2007
@@ -109,6 +109,7 @@
   <modules>
     <module>camel-core</module>
     <module>camel-jms</module>
+    <module>camel-jbi</module>
   </modules>
 
   <scm>