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://public.nexus.pentaho.org/#browse/search=keyword%3Dpentaho-aggdesigner-algorithm:dfbef09efe1644eaf46667ad068c6bc7:0ab80a743921e426879e5d032aabde8f下載jar包編譯到本地倉庫
mvn install:install-file -DgroupId=org.pentaho -DartifactId=pentaho-aggdesigner-algorithm -Dversion=5.1.5-jhyde -Dpackaging=jar -Dfile={your path}/pentaho-aggdesigner-algorithm-5.1.5-jhyde-jhyde.jar
2.3
缺少eigenbase:eigenbase-properties:jar:1.1.4
從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.