I'm not totally sure, but I'd guess it's something along the lines of replace these:
"org.apache.hadoop" % "hadoop-common" % "2.0.0-cdh4.2.0" exclude("commons-daemon", "commons-daemon"),
"org.apache.hadoop" % "hadoop-hdfs" % "2.0.0-cdh4.2.0" exclude("commons-daemon", "commons-daemon"),
"org.apache.hadoop" % "hadoop-mapreduce-client-jobclient" % "2.0.0-cdh4.2.0",
with:
"org.apache.hadoop" % "hadoop-common" % "2.0.0-cdh4.2.0" exclude("commons-daemon", "commons-daemon"),
"org.apache.hadoop" % "hadoop-core" % "2.0.0-mr1-cdh4.2.0" exclude("commons-daemon", "commons-daemon"),
I think hadoop-core is the MRv1 Mapreduce stuff, and hadoop-mapreduce-client-jobclient is the MRv2 stuff.
-Ross