Just for the record, it seems quite easy to extend the openhab classpath.
Using this line in start(_debug).sh instead of the original extends the classpath with all jars in the given folder:
cp=$(echo lib/*.jar | tr ' ' ':'):$(find $eclipsehome -name "org.eclipse.equinox.launcher_*.jar" | sort | tail -1);
Manfred