1.
otsstreamreader报错
修改下面依赖改为1.0.0
<dependency>
<groupId>com.aliyun.openservices</groupId>
<artifactId>tablestore-streamclient</artifactId>
<version>1.0.0</version>
</dependency>
2.
hdfsreader报错
2.1
修改为1.8
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>${project-sourceEncoding}</encoding>
</configuration>
</plugin>
2.2
缺少org.pentaho.pentaho-aggdesigner-algorithm:jar:5.1.5-jhyde
https://github.com/julianhyde/eigenbase-properties下载源码编译
mvn install:install-file -DgroupId=eigenbase -DartifactId=eigenbase-properties -Dversion=1.1.4 -Dpackaging=jar -Dfile={your path}/pentaho-aggdesigner-algorithm-5.1.5-jhyde-jhyde.jar
3.