Repository: camel Updated Branches: refs/heads/master c2025336e -> 0706d4702
replace tabs with spaces Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/834167b0 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/834167b0 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/834167b0 Branch: refs/heads/master Commit: 834167b0b219656e29e7c69a9a1abeeb1764362e Parents: 3cf6a8f Author: woj-i <wojciechin...@gmail.com> Authored: Fri Oct 16 17:42:06 2015 +0200 Committer: Claus Ibsen <davscl...@apache.org> Committed: Fri Oct 23 06:45:01 2015 +0200 ---------------------------------------------------------------------- components/camel-hbase/pom.xml | 210 ++++++++++++++++++------------------ 1 file changed, 105 insertions(+), 105 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/834167b0/components/camel-hbase/pom.xml ---------------------------------------------------------------------- diff --git a/components/camel-hbase/pom.xml b/components/camel-hbase/pom.xml index eabc9b5..2c0d530 100644 --- a/components/camel-hbase/pom.xml +++ b/components/camel-hbase/pom.xml @@ -16,7 +16,7 @@ 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> + <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.camel</groupId> @@ -27,13 +27,13 @@ <artifactId>camel-hbase</artifactId> <packaging>bundle</packaging> <name>Camel :: Hbase</name> - <description>Camel HBase component</description> + <description>Camel HBase component</description> <properties> - <camel.osgi.import.before.defaults> - org.apache.hadoop.conf;version="[2,3)", - org.apache.hadoop.hbase.*;version="[1,2)" - </camel.osgi.import.before.defaults> + <camel.osgi.import.before.defaults> + org.apache.hadoop.conf;version="[2,3)", + org.apache.hadoop.hbase.*;version="[1,2)" + </camel.osgi.import.before.defaults> <camel.osgi.export.pkg>org.apache.camel.component.hbase.*</camel.osgi.export.pkg> <camel.osgi.export.service>org.apache.camel.spi.ComponentResolver;component=hbase</camel.osgi.export.service> </properties> @@ -48,29 +48,29 @@ <groupId>org.apache.hbase</groupId> <artifactId>hbase-client</artifactId> <version>${hbase-version}</version> - <exclusions> - <exclusion> - <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-auth</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-mapreduce-client-core</artifactId> - </exclusion> - </exclusions> + <exclusions> + <exclusion> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-auth</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-mapreduce-client-core</artifactId> + </exclusion> + </exclusions> + </dependency> + <!-- because hbase-client 1.1.1 use hadoop2.5.1 by default, check is it still required by the next version update --> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-auth</artifactId> + <version>${hadoop2-version}</version> + </dependency> + <!-- because hbase-client 1.1.1 use hadoop2.5.1 by default, check is it still required by the next version update --> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-mapreduce-client-core</artifactId> + <version>${hadoop2-version}</version> </dependency> - <!-- because hbase-client 1.1.1 use hadoop2.5.1 by default, check is it still required by the next version update --> - <dependency> - <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-auth</artifactId> - <version>${hadoop2-version}</version> - </dependency> - <!-- because hbase-client 1.1.1 use hadoop2.5.1 by default, check is it still required by the next version update --> - <dependency> - <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-mapreduce-client-core</artifactId> - <version>${hadoop2-version}</version> - </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> @@ -152,70 +152,70 @@ <version>${hbase-version}</version> <classifier>tests</classifier> <scope>test</scope> - <exclusions> - <exclusion> - <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-client</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-hdfs</artifactId> - </exclusion> - </exclusions> + <exclusions> + <exclusion> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-client</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-hdfs</artifactId> + </exclusion> + </exclusions> + </dependency> + <!-- because hbase-server 1.1.1 use hadoop2.5.1 by default, check is it still required by the next version update --> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-client</artifactId> + <version>${hadoop2-version}</version> + <classifier>tests</classifier> + <scope>test</scope> + </dependency> + <!-- because hbase-server 1.1.1 use hadoop2.5.1 by default, check is it still required by the next version update --> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-hdfs</artifactId> + <version>${hadoop2-version}</version> + <classifier>tests</classifier> + <scope>test</scope> </dependency> - <!-- because hbase-server 1.1.1 use hadoop2.5.1 by default, check is it still required by the next version update --> - <dependency> - <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-client</artifactId> - <version>${hadoop2-version}</version> - <classifier>tests</classifier> - <scope>test</scope> - </dependency> - <!-- because hbase-server 1.1.1 use hadoop2.5.1 by default, check is it still required by the next version update --> - <dependency> - <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-hdfs</artifactId> - <version>${hadoop2-version}</version> - <classifier>tests</classifier> - <scope>test</scope> - </dependency> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-testing-util</artifactId> <version>${hbase-version}</version> <classifier>tests</classifier> <scope>test</scope> - <exclusions> - <exclusion> - <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-hdfs</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-minicluster</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-client</artifactId> - </exclusion> - </exclusions> + <exclusions> + <exclusion> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-hdfs</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-minicluster</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-client</artifactId> + </exclusion> + </exclusions> + </dependency> + <!-- because hbase-testing-util 1.1.1 use hadoop2.5.1 by default, check is it still required by the next version update --> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-hdfs</artifactId> + <version>${hadoop2-version}</version> + <type>test-jar</type> + <classifier>tests</classifier> + <scope>test</scope> + </dependency> + <!-- because hbase-testing-util 1.1.1 use hadoop2.5.1 by default, check is it still required by the next version update --> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-minicluster</artifactId> + <version>${hadoop2-version}</version> + <scope>test</scope> </dependency> - <!-- because hbase-testing-util 1.1.1 use hadoop2.5.1 by default, check is it still required by the next version update --> - <dependency> - <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-hdfs</artifactId> - <version>${hadoop2-version}</version> - <type>test-jar</type> - <classifier>tests</classifier> - <scope>test</scope> - </dependency> - <!-- because hbase-testing-util 1.1.1 use hadoop2.5.1 by default, check is it still required by the next version update --> - <dependency> - <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-minicluster</artifactId> - <version>${hadoop2-version}</version> - <scope>test</scope> - </dependency> <!-- Using a low version of guava could let the server shutdown quickly --> <dependency> @@ -237,26 +237,26 @@ </dependency> </dependencies> - <build> - <testResources> - <testResource> - <directory>${project.basedir}/src/test/resources</directory> - <includes> - <include>**/*</include> - </includes> - </testResource> - </testResources> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <!-- This is required by the hbase testing utility --> - <forkCount>1</forkCount> - <reuseForks>false</reuseForks> - </configuration> - </plugin> - </plugins> - </build> + <build> + <testResources> + <testResource> + <directory>${project.basedir}/src/test/resources</directory> + <includes> + <include>**/*</include> + </includes> + </testResource> + </testResources> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <!-- This is required by the hbase testing utility --> + <forkCount>1</forkCount> + <reuseForks>false</reuseForks> + </configuration> + </plugin> + </plugins> + </build> </project>