1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <modelVersion >4.0.0</modelVersion >
6
+
7
+ <groupId >com.spring4all</groupId >
8
+ <artifactId >spring-boot-starter-hbase</artifactId >
9
+ <version >1.0.0.RELEASE</version >
10
+
11
+ <name >spring-boot-starter-hbase</name >
12
+ <url >https://github.com/SpringForAll/spring-boot-starter-hbase</url >
13
+ <description >starter for hbase</description >
14
+
15
+ <parent >
16
+ <groupId >org.sonatype.oss</groupId >
17
+ <artifactId >oss-parent</artifactId >
18
+ <version >7</version >
19
+ </parent >
20
+
21
+ <licenses >
22
+ <license >
23
+ <name >The Apache Software License, Version 2.0</name >
24
+ <url >http://www.apache.org/licenses/LICENSE-2.0.txt</url >
25
+ <distribution >repo</distribution >
26
+ </license >
27
+ </licenses >
28
+
29
+ <scm >
30
+ <url >http://spring4all.com</url >
31
+ <
connection >
[email protected] :SpringForAll/spring-boot-starter-hbase.git</
connection >
32
+ <developerConnection >https://github.com/SpringForAll/spring-boot-starter-hbase</developerConnection >
33
+ </scm >
34
+
35
+ <developers >
36
+ <developer >
37
+ <name >JThink</name >
38
+ <organization >http://spring4all.com</organization >
39
+ </developer >
40
+ </developers >
41
+
42
+ <properties >
43
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
44
+ <version .java>1.8</version .java>
45
+ <version .spring-boot>1.5.6.RELEASE</version .spring-boot>
46
+ </properties >
47
+
48
+ <dependencies >
49
+ <dependency >
50
+ <groupId >org.springframework.boot</groupId >
51
+ <artifactId >spring-boot-autoconfigure</artifactId >
52
+ </dependency >
53
+ <dependency >
54
+ <groupId >org.springframework</groupId >
55
+ <artifactId >spring-tx</artifactId >
56
+ </dependency >
57
+ <dependency >
58
+ <groupId >org.slf4j</groupId >
59
+ <artifactId >slf4j-api</artifactId >
60
+ <version >1.7.25</version >
61
+ </dependency >
62
+ <dependency >
63
+ <groupId >org.apache.hbase</groupId >
64
+ <artifactId >hbase-client</artifactId >
65
+ <version >1.0.0-cdh5.4.4</version >
66
+ <exclusions >
67
+ <exclusion >
68
+ <groupId >javax.servlet</groupId >
69
+ <artifactId >servlet-api</artifactId >
70
+ </exclusion >
71
+ </exclusions >
72
+ </dependency >
73
+ <dependency >
74
+ <groupId >junit</groupId >
75
+ <artifactId >junit</artifactId >
76
+ <version >4.12</version >
77
+ <scope >test</scope >
78
+ </dependency >
79
+ </dependencies >
80
+
81
+ <dependencyManagement >
82
+ <dependencies >
83
+ <dependency >
84
+ <groupId >org.springframework.boot</groupId >
85
+ <artifactId >spring-boot-dependencies</artifactId >
86
+ <version >${version.spring-boot} </version >
87
+ <type >pom</type >
88
+ <scope >import</scope >
89
+ </dependency >
90
+ </dependencies >
91
+ </dependencyManagement >
92
+
93
+ <repositories >
94
+ <repository >
95
+ <id >cloudera repository</id >
96
+ <url >https://repository.cloudera.com/artifactory/cloudera-repos</url >
97
+ </repository >
98
+ </repositories >
99
+
100
+ <build >
101
+ <plugins >
102
+ <plugin >
103
+ <groupId >org.apache.maven.plugins</groupId >
104
+ <artifactId >maven-compiler-plugin</artifactId >
105
+ <version >3.3</version >
106
+ <configuration >
107
+ <encoding >${project.build.sourceEncoding} </encoding >
108
+ <source >${version.java} </source >
109
+ <target >${version.java} </target >
110
+ <showWarnings >true</showWarnings >
111
+ </configuration >
112
+ </plugin >
113
+ </plugins >
114
+ </build >
115
+ </project >
0 commit comments