blob: 6be4911c6aa5d2ecac53793bbad68e0ebaa66865 [file] [log] [blame]
ChrisC025301d2017-01-31 11:40:03 +01001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
Arthur Martella22e015f2018-02-22 14:24:40 -05005 <groupId>org.onap.so</groupId>
Rob Daugherty26419352017-08-04 15:55:54 -04006 <artifactId>so</artifactId>
Jessica Wagantall777f6372017-11-20 11:10:28 -08007 <version>1.2.0-SNAPSHOT</version>
ChrisC025301d2017-01-31 11:40:03 +01008 </parent>
9
ChrisC025301d2017-01-31 11:40:03 +010010 <artifactId>mso-api-handlers</artifactId>
11 <name>API Handler</name>
12 <description>API Handler for MSO</description>
13 <packaging>pom</packaging>
14
15 <modules>
16 <module>mso-requests-db</module>
17 <module>mso-api-handler-common</module>
18 <module>mso-api-handler-infra</module>
19 </modules>
ChrisC1ba1d192017-03-13 05:01:04 -070020
ChrisC025301d2017-01-31 11:40:03 +010021 <dependencies>
ChrisC025301d2017-01-31 11:40:03 +010022 <dependency>
23 <groupId>org.apache.httpcomponents</groupId>
24 <artifactId>httpcore</artifactId>
25 </dependency>
26 <dependency>
27 <groupId>org.apache.httpcomponents</groupId>
28 <artifactId>httpclient</artifactId>
29 </dependency>
Sindhu A97b65362018-03-22 05:09:02 +000030 <dependency>
31 <groupId>junit</groupId>
32 <artifactId>junit</artifactId>
33 <version>4.12</version>
34 <scope>test</scope>
35 </dependency>
ChrisC025301d2017-01-31 11:40:03 +010036 </dependencies>
Rob Daugherty8047b7c2017-08-01 11:56:58 -040037</project>