Replace references to bazel-genfiles with bazel-bin

In bazel 0.25 the target directory was changed from bazel-genfiles
to bazel-bin and bazel-genfiles was symlinked to bazel-bin.

In bazel 1.0 the symlink no longer gets created, and this causes the
./tools/maven/mvn.sh script to fail on a clean workspace because it
still refers to the old location.

Fix mvn.sh to use bazel-bin.

Change-Id: I3ab9979d7f9345393592514c58e7ba06396e2491
diff --git a/tools/maven/mvn.sh b/tools/maven/mvn.sh
index 93bef01..6fd6341 100755
--- a/tools/maven/mvn.sh
+++ b/tools/maven/mvn.sh
@@ -53,4 +53,4 @@
   { echo "bazel failed to build gen_${command}. Use VERBOSE=1 for more info" ; exit 1 ; }
 
 export OUTPUT_BASE=`bazel info output_base`
-./bazel-genfiles/tools/maven/${command}.sh
+./bazel-bin/tools/maven/${command}.sh