Skip to content

Commit

Permalink
CAMEL-398: Added camel-bindy as a new component. Big thanks to Charle…
Browse files Browse the repository at this point in the history
…s Moulliard for donating this component to Apahce Camel.

git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@738783 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
davsclaus committed Jan 29, 2009
1 parent d88edf6 commit 0eba5af
Show file tree
Hide file tree
Showing 51 changed files with 12,939 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apache-camel/bundle/pom.xml
Expand Up @@ -65,6 +65,10 @@
<groupId>org.apache.camel</groupId>
<artifactId>camel-bam</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-bindy</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-cometd</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions apache-camel/pom.xml
Expand Up @@ -67,6 +67,10 @@
<groupId>org.apache.camel</groupId>
<artifactId>camel-bam</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-bindy</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-cometd</artifactId>
Expand Down
99 changes: 99 additions & 0 deletions components/camel-bindy/pom.xml
@@ -0,0 +1,99 @@
<?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>2.0-SNAPSHOT</version>
</parent>

<artifactId>camel-bindy</artifactId>
<packaging>bundle</packaging>
<name>Camel :: Bindy</name>
<description>Camel Bindy support</description>

<properties>
<camel.osgi.export.pkg>
org.apache.camel.dataformat.bindy.*;
</camel.osgi.export.pkg>
</properties>

<dependencies>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
</dependency>

<!-- testing -->
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-spring-javaconfig</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<childDelegation>false</childDelegation>
<useFile>true</useFile>
<forkMode>pertest</forkMode>
<excludes>
<!-- <exclude>**/XXXTest.*</exclude> -->
</excludes>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 0eba5af

Please sign in to comment.