Skip to content

Commit bae8f2a

Browse files
committed
utils: fix pom.xml to have references for javax.servlet api interfaces
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
1 parent 384acff commit bae8f2a

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

utils/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,11 @@
9999
<groupId>commons-configuration</groupId>
100100
<artifactId>commons-configuration</artifactId>
101101
</dependency>
102+
<dependency>
103+
<groupId>javax.servlet</groupId>
104+
<artifactId>servlet-api</artifactId>
105+
<scope>provided</scope>
106+
</dependency>
102107
<!-- Test dependency in mysql for db tests -->
103108
<dependency>
104109
<groupId>mysql</groupId>

utils/src/com/cloud/utils/HttpUtils.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//
12
// Licensed to the Apache Software Foundation (ASF) under one
23
// or more contributor license agreements. See the NOTICE file
34
// distributed with this work for additional information
@@ -14,6 +15,8 @@
1415
// KIND, either express or implied. See the License for the
1516
// specific language governing permissions and limitations
1617
// under the License.
18+
//
19+
1720
package com.cloud.utils;
1821

1922
import org.apache.log4j.Logger;

0 commit comments

Comments
 (0)