我想对pentaho kettle插件开发进行mavenize,并使用pom.xml中的xml代码将当前版本4.4.0稳定升级到最新版本。 我使用6.0.0.1-364,但根据pentaho网站6.1最新稳定。那么相同的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>
答案 0 :(得分:0)
AFAK您应该使用与系统中安装的PDI版本相对应的maven依赖项。因此,如果您使用的是Kettle版本的6.0.0.1-364,那么请使用相同的maven依赖项。现在从上面的link来看,最新版本似乎是6.1.0.2-208。如果您正在寻找最新版本,那么它是6.1.0.2
希望有所帮助:)