Flume: flume-ng-sql-source

1. download

#git clone https://github.com/mvalleavila/flume-ng-sql-source.git

2. compile

#cd flume-ng-sql-source

#mvn package

error : source 1.3 (use -source 5 or higher to enable generics)

solution:

Add the below properties to your pom.xml.

<properties>
 <maven.compiler.target>1.6</maven.compiler.target>
 <maven.compiler.source>1.6</maven.compiler.source>
</properties>

References

https://github.com/mvalleavila/flume-ng-sql-source

猜你喜欢

转载自ylzhj02.iteye.com/blog/2168701
今日推荐