-
Notifications
You must be signed in to change notification settings - Fork 0
Just for review #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
95348c1
47a2040
8df54c3
93c0fc8
c72b036
6bb1e04
fd63a33
8935714
0b23c56
910a5c0
acc4075
530b034
ba7a14f
3fd298d
1f3d63d
551ae16
311fa39
cd1a215
576e98b
2dcfc8d
1b91819
868e52b
7e8b1bf
7c14ed3
12da966
80fe09d
1a892f6
3b21472
468eba5
e945fbc
30a8926
881ac64
c6e578d
0dc9e5e
488425b
50064d2
cebccac
a40810a
48a8969
e6dcc5b
f2338b2
8c22e09
3383d03
e3d87e0
4e46202
efd2eef
1309263
0a69806
3bd2ef2
7ec3c0e
07e8a2f
3f88fb0
4f16c36
c4f3c21
a97d132
b557fc3
401a64c
7106713
93af29f
5e792ad
a9c22ff
4321d7e
bb8dc68
b46140a
093e164
de26141
33fe712
b768186
d54fa22
6871100
ff9714e
96d0290
6d58edc
d8444f7
e959502
6b60109
a5fd662
aee3401
bbec48e
c89bf27
ecdfcb4
a6cbd95
4913a8e
37b4387
af30223
57bf401
eadc2b5
407e97d
d8acba2
4d82fe1
59a4414
45f799c
823b91c
f3afe35
5d4df1a
5dae756
c120105
7f2f032
04385a7
3cd96cf
a10f270
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -122,7 +122,88 @@ | |
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.hbase</groupId> | ||
| <artifactId>hbase</artifactId> | ||
| <artifactId>hbase-common</artifactId> | ||
| <version>${hbase.version}</version> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>asm</groupId> | ||
| <artifactId>asm</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>org.jboss.netty</groupId> | ||
| <artifactId>netty</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>io.netty</groupId> | ||
| <artifactId>netty</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>commons-logging</groupId> | ||
| <artifactId>commons-logging</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>org.jruby</groupId> | ||
| <artifactId>jruby-complete</artifactId> | ||
| </exclusion> | ||
| </exclusions> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.hbase</groupId> | ||
| <artifactId>hbase-client</artifactId> | ||
| <version>${hbase.version}</version> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>asm</groupId> | ||
| <artifactId>asm</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>org.jboss.netty</groupId> | ||
| <artifactId>netty</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>io.netty</groupId> | ||
| <artifactId>netty</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>commons-logging</groupId> | ||
| <artifactId>commons-logging</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>org.jruby</groupId> | ||
| <artifactId>jruby-complete</artifactId> | ||
| </exclusion> | ||
| </exclusions> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.hbase</groupId> | ||
| <artifactId>hbase-server</artifactId> | ||
| <version>${hbase.version}</version> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>asm</groupId> | ||
| <artifactId>asm</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>org.jboss.netty</groupId> | ||
| <artifactId>netty</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>io.netty</groupId> | ||
| <artifactId>netty</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>commons-logging</groupId> | ||
| <artifactId>commons-logging</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>org.jruby</groupId> | ||
| <artifactId>jruby-complete</artifactId> | ||
| </exclusion> | ||
| </exclusions> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.hbase</groupId> | ||
| <artifactId>hbase-protocol</artifactId> | ||
| <version>${hbase.version}</version> | ||
| <exclusions> | ||
| <exclusion> | ||
|
|
@@ -219,7 +300,8 @@ | |
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-install-plugin</artifactId> | ||
| <configuration> | ||
| <skip>true</skip> | ||
| <skip>false</skip> | ||
| <!--<skip>true</skip>--> | ||
|
Owner
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ? |
||
| </configuration> | ||
| </plugin> | ||
| <plugin> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -94,6 +94,7 @@ | |
| <module>streaming</module> | ||
| <module>sql/catalyst</module> | ||
| <module>sql/core</module> | ||
| <module>sql/hbase</module> | ||
| <module>sql/hive</module> | ||
| <module>repl</module> | ||
| <module>assembly</module> | ||
|
|
@@ -124,8 +125,8 @@ | |
| <hadoop.version>1.0.4</hadoop.version> | ||
| <protobuf.version>2.4.1</protobuf.version> | ||
| <yarn.version>${hadoop.version}</yarn.version> | ||
| <hbase.version>0.94.6</hbase.version> | ||
| <flume.version>1.4.0</flume.version> | ||
| <hbase.version>0.98.5-hadoop2</hbase.version> | ||
|
Owner
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. only support 0.98.5-hadoop2? |
||
| <zookeeper.version>3.4.5</zookeeper.version> | ||
| <hive.version>0.12.0-protobuf-2.5</hive.version> | ||
| <parquet.version>1.4.3</parquet.version> | ||
|
|
@@ -855,13 +856,13 @@ | |
| <goal>testCompile</goal> | ||
| </goals> | ||
| </execution> | ||
| <execution> | ||
| <id>attach-scaladocs</id> | ||
| <phase>verify</phase> | ||
| <goals> | ||
| <goal>doc-jar</goal> | ||
| </goals> | ||
| </execution> | ||
| <!--<execution>--> | ||
| <!--<id>attach-scaladocs</id>--> | ||
| <!--<phase>verify</phase>--> | ||
| <!--<goals>--> | ||
| <!--<goal>doc-jar</goal>--> | ||
| <!--</goals>--> | ||
| <!--</execution>--> | ||
|
Owner
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why? |
||
| </executions> | ||
| <configuration> | ||
| <scalaVersion>${scala.version}</scalaVersion> | ||
|
|
@@ -902,6 +903,7 @@ | |
| <configuration> | ||
| <source>${java.version}</source> | ||
| <target>${java.version}</target> | ||
| <debug>true</debug> | ||
|
Owner
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ? |
||
| <encoding>UTF-8</encoding> | ||
| <maxmem>1024m</maxmem> | ||
| <fork>true</fork> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
necessary?