You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2016/02/27 17:21:34 UTC

[3/4] camel git commit: CAMEL-9648: Polished. This closes #871

CAMEL-9648: Polished. This closes #871


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/bb394445
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/bb394445
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/bb394445

Branch: refs/heads/master
Commit: bb39444579457f9303596778e4f74b36675d8142
Parents: c3cfb65
Author: Claus Ibsen <da...@apache.org>
Authored: Sat Feb 27 17:13:23 2016 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Sat Feb 27 17:13:23 2016 +0100

----------------------------------------------------------------------
 components/camel-ironmq/.gitignore |   4 -
 components/camel-ironmq/pom.xml    | 126 +++++++++++++++++---------------
 2 files changed, 67 insertions(+), 63 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/bb394445/components/camel-ironmq/.gitignore
----------------------------------------------------------------------
diff --git a/components/camel-ironmq/.gitignore b/components/camel-ironmq/.gitignore
deleted file mode 100644
index c708c36..0000000
--- a/components/camel-ironmq/.gitignore
+++ /dev/null
@@ -1,4 +0,0 @@
-/target
-/.settings
-/.classpath
-/.project

http://git-wip-us.apache.org/repos/asf/camel/blob/bb394445/components/camel-ironmq/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-ironmq/pom.xml b/components/camel-ironmq/pom.xml
index e525394..4ff344e 100644
--- a/components/camel-ironmq/pom.xml
+++ b/components/camel-ironmq/pom.xml
@@ -1,67 +1,75 @@
 <?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>
-	<parent>
-		<groupId>org.apache.camel</groupId>
-		<artifactId>components</artifactId>
-		<version>2.17-SNAPSHOT</version>
-	</parent>
+         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>components</artifactId>
+    <version>2.17-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>camel-ironmq</artifactId>
+  <packaging>bundle</packaging>
+
+  <name>Camel :: IronMQ</name>
+  <description>Camel IronMQ component</description>
+
+  <properties>
+    <camel.osgi.export.pkg>org.apache.camel.component.ironmq.*</camel.osgi.export.pkg>
+    <camel.osgi.export.service>org.apache.camel.spi.ComponentResolver;component=ironmq</camel.osgi.export.service>
+  </properties>
+
+  <dependencies>
 
-	<artifactId>camel-ironmq</artifactId>
-	<packaging>bundle</packaging>
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.iron.ironmq</groupId>
+      <artifactId>ironmq</artifactId>
+      <version>${ironmq-version}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.google.code.gson</groupId>
+      <artifactId>gson</artifactId>
+      <version>${gson-version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-lang3</artifactId>
+      <version>${commons-lang3-version}</version>
+    </dependency>
 
-	<name>Camel :: IronMQ</name>
-	<description>Camel IronMQ component</description>
+    <!-- logging -->
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <scope>test</scope>
+    </dependency>
 
-	<properties>
-		<camel.osgi.export.pkg>org.apache.camel.component.ironmq.*</camel.osgi.export.pkg>
-		<camel.osgi.export.service>org.apache.camel.spi.ComponentResolver;component=ironmq</camel.osgi.export.service>
-	</properties>
+    <!-- testing -->
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-test-spring</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
 
-	<dependencies>
-		<dependency>
-			<groupId>org.apache.camel</groupId>
-			<artifactId>camel-core</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>io.iron.ironmq</groupId>
-			<artifactId>ironmq</artifactId>
-			<version>${ironmq-version}</version>
-		</dependency>
-        <dependency>
-	       <groupId>com.google.code.gson</groupId>
-	       <artifactId>gson</artifactId>
-           <version>${gson-version}</version>
-        </dependency>
-        <dependency>
-			<groupId>org.apache.commons</groupId>
-			<artifactId>commons-lang3</artifactId>
-			<version>${commons-lang3-version}</version>
-		</dependency>
-		<!-- logging -->
-		<dependency>
-			<groupId>org.slf4j</groupId>
-			<artifactId>slf4j-log4j12</artifactId>
-			<scope>test</scope>
-		</dependency>
-		<!-- testing -->
-		<dependency>
-			<groupId>org.apache.camel</groupId>
-			<artifactId>camel-test-spring</artifactId>
-			<scope>test</scope>
-		</dependency>
-	</dependencies>
 </project>