diff --git a/pom.xml b/pom.xml
index 5b7bd49970..54d2f275c7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -739,7 +739,7 @@
org.codehaus.jettison
jettison
- 1.5.1
+ 1.5.3
com.google.code.findbugs
diff --git a/tez-dag/src/main/java/org/apache/tez/dag/history/utils/DAGUtils.java b/tez-dag/src/main/java/org/apache/tez/dag/history/utils/DAGUtils.java
index 77e7179c29..bbb5432f2c 100644
--- a/tez-dag/src/main/java/org/apache/tez/dag/history/utils/DAGUtils.java
+++ b/tez-dag/src/main/java/org/apache/tez/dag/history/utils/DAGUtils.java
@@ -111,7 +111,7 @@ public static JSONObject generateSimpleJSONPlan(DAGPlan dagPlan) throws JSONExce
return dagJson;
}
- public static JSONObject convertDataEventDependencyInfoToJSON(List info) {
+ public static JSONObject convertDataEventDependencyInfoToJSON(List info) throws JSONException{
return new JSONObject(convertDataEventDependecyInfoToATS(info));
}
@@ -436,7 +436,7 @@ public static Map convertVertexStatsToATSMap(
}
public static JSONObject convertServicePluginToJSON(
- ServicePluginInfo servicePluginInfo) {
+ ServicePluginInfo servicePluginInfo) throws JSONException{
JSONObject jsonObject = new JSONObject(convertServicePluginToATSMap(servicePluginInfo));
return jsonObject;
}