From bae8f2a8cb68621ea34e7a50b42f3a217261b041 Mon Sep 17 00:00:00 2001 From: Rohit Yadav Date: Tue, 12 Aug 2014 10:13:56 +0200 Subject: [PATCH] utils: fix pom.xml to have references for javax.servlet api interfaces Signed-off-by: Rohit Yadav --- utils/pom.xml | 5 +++++ utils/src/com/cloud/utils/HttpUtils.java | 3 +++ 2 files changed, 8 insertions(+) diff --git a/utils/pom.xml b/utils/pom.xml index cc6de3b942c..27eeee37a9f 100755 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -99,6 +99,11 @@ commons-configuration commons-configuration + + javax.servlet + servlet-api + provided + mysql diff --git a/utils/src/com/cloud/utils/HttpUtils.java b/utils/src/com/cloud/utils/HttpUtils.java index f608b862b43..0ed2afaa46d 100644 --- a/utils/src/com/cloud/utils/HttpUtils.java +++ b/utils/src/com/cloud/utils/HttpUtils.java @@ -1,3 +1,4 @@ +// // Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information @@ -14,6 +15,8 @@ // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. +// + package com.cloud.utils; import org.apache.log4j.Logger;