This repository was archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpom.xml
More file actions
105 lines (94 loc) · 3.37 KB
/
pom.xml
File metadata and controls
105 lines (94 loc) · 3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<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/xsd/maven-4.0.0.xsd">
<!-- /* * Copyright, 2011, SALESFORCE.com */ -->
<modelVersion>4.0.0</modelVersion>
<groupId>com.salesforce.hbase</groupId>
<artifactId>scoot</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Scoot: The HBase Schema Loader</name>
<description>Diff and load schemas in HBase</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<hbase.version>0.94.0</hbase.version>
<junit.version>4.10</junit.version>
<hadoop.version>1.0.2</hadoop.version>
<!-- Build properties -->
<unittest.include>**/*Test.java</unittest.include>
<!-- Test properties; set these to be correct for your environment -->
<local.hbase.conf.dir>/tmp/localhbase/conf</local.hbase.conf.dir>
<local.hbase.shell.path>/home/ivarley/dev/tools/Linux/hbase/hbase-0.94.0-security/bin/</local.hbase.shell.path>
</properties>
<build>
<plugins>
<!-- Test plugins -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<!-- <version>${surefire.version}</version> -->
<configuration>
<includes>
<include>${unittest.include}</include>
</includes>
<excludes>
<exclude>**/*$*</exclude>
</excludes>
<systemPropertyVariables>
<localHBaseConfDir>${local.hbase.conf.dir}</localHBaseConfDir>
<localHBaseShellPath>${local.hbase.shell.path}</localHBaseShellPath>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<configuration>
<programs>
<program>
<mainClass>com.salesforce.scoot.Scoot</mainClass>
<name>scoot</name>
</program>
</programs>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- General dependencies -->
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase</artifactId>
<version>${hbase.version}</version>
</dependency>
<!-- This shouldn't be necessary, because HBase depends on Hadoop. But it seems
to not be pulled in by default -->
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
<version>${hadoop.version}</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase</artifactId>
<version>${hbase.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>