简体   繁体   中英

Src jar for Pentaho Kettle

Where can I find a src-jar for Kettle? I'm looking for a jar that contains the Java files, and I can point my IDE to (like for example junit-4.6-src.jar).

You can download source zip files from the project web site . Then you just need to repackage it into a jar file.

It's pretty easy, in fact:

jar cvf src.jar -C src .
jar uvf src.jar -C src-core .
jar uvf src.jar -C src-db .
jar uvf src.jar -C src-ui .

(Doing it all in one go fails due to duplicate entries.)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM