Re: oak-run command line

2014-06-11 Thread Jukka Zitting
Hi, On Tue, Jun 10, 2014 at 4:22 PM, Julian Reschke julian.resc...@gmx.de wrote: OK; in which case I'd propose to change the tool to return with a helpful error message :-) +1 Works for me. BR, Jukka Zitting

oak-parent: DB2 dependency with system scope

2014-06-11 Thread Julian Reschke
Hi, we currently have a system-scoped dependency for the DB2 JDBC drivers, because (by copyright) they are not available from Maven repos. Turns out that this doesn't work well with the Maven Shade plugin, which is used to build oak-run. It seems the path of least resistance is to make the

Re: oak-parent: DB2 dependency with system scope

2014-06-11 Thread Chetan Mehrotra
Instead of embedding various such drivers I would prefer we include/refer them as part of classpath on command line. So one of the following two approaches can be used 1. Specify the jars as part of classpath java -cp oak-run-xxx.jar:driver.jar org.apache.jackrabbit.oak.run.Main benchmark ...