Hi,
I sometimes use ARQ|TDB|Jena command line programs directly from 'trunk'
and/or scripts which checkout the sources and package it via mvn package.
I think we might have a small issue in ARQ's bin/make_classpath_mvn:
Index: bin/make_classpath_mvn
===================================================================
--- bin/make_classpath_mvn (revision 1291625)
+++ bin/make_classpath_mvn (working copy)
@@ -17,6 +17,6 @@
CP="$CP:$M2_REPO$x"
done
-CP="$DIRROOT/classes$CP"
+CP="$DIRROOT/target/classes$CP"
echo "$CP"
If you are ok with it, I'll commit this change and check the other
modules.
Thanks,
Paolo
PS:
I am not 100% sure why there is a $DIRROOT/classes in make_classpath_mvn,
maybe there is a good reason and I don't know it.