2.0b6
is already on Maven Central, and we ship it with ImageJ...
All I ask is that you clone imagej-launcher locally, build locally, and actually test that it fixes your problem when you lower that value.
@ctrueden: I was about to do that and I am struggling with the compilation on Windows. Is there any source of information on the topic?
# build 32-bit
UNAME="$(uname -s)"
case "$UNAME" in
Linux)
(export JAVA_HOME=/home/dscho/fiji/java/linux/jdk1.6.0_24 &&
export PATH=$JAVA_HOME/bin:$PATH &&
mvn -P i386-Linux,copy-launchers -P !amd64-Linux -X install)
;;
MINGW*)
(export JAVA_HOME=$(cd /src/fiji/java/win32/jdk1.6.0_24 && pwd -W) &&
export PATH=/c/msysgit/mingw/bin:/c/msysgit/bin:$JAVA_HOME/bin:$PATH &&
mvn -Pcopy-launchers -U -Dos.arch=x86 -X -e install)
esac
git clone git://github.com/imagej/imagej
cd imagej
mvn -Pdist
shift
+[
.