2016-05-16 43 views
0

我想要初始化pentaho水壶插件开发,并在pom.xml中使用下面的xml代码将当前版本4.4.0稳定升级到最新版本。 I使用6.0.0.1-364,但是根据pentaho网站6.1最新稳定。那么相同的对应maven依赖关系又是什么?pentao水壶的最新maven依赖版本

这里http://repo.pentaho.org/content/grou...e/kettle-core/我可以看到水壶maven依赖项的列表。但是哪一个是最新和稳定的版本?请帮我理解

<dependencies> 
<dependency> 
<groupId>pentaho-kettle</groupId> 
<artifactId>kettle-core</artifactId> 
<version>6.0.0.1-364</version> 
</dependency> 

<dependency> 
<groupId>pentaho-kettle</groupId> 
<artifactId>kettle-engine</artifactId> 
<version>6.0.0.1-364</version> 
</dependency> 

<dependency> 
<groupId>pentaho-kettle</groupId> 
<artifactId>kettle-ui-swt</artifactId> 
<version>6.0.0.1-364</version> 
</dependency> 
</dependencies> 

回答