Can the build process be debugged? If so, how?From Kedar: Yes, since the build is based on Maven, you can actually debug the build process itself in a Java Debugger. Here's how:
export MAVEN_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5050" mvn -o compile
|