blob: aabb2b89ad1bf8ce1b63788746b533a0b12ab90b [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>
Rob Daugherty8047b7c2017-08-01 11:56:58 -04005 <groupId>org.openecomp.so</groupId>
Rob Daugherty26419352017-08-04 15:55:54 -04006 <artifactId>so</artifactId>
ChrisC1ba1d192017-03-13 05:01:04 -07007 <version>1.1.0-SNAPSHOT</version>
ChrisC025301d2017-01-31 11:40:03 +01008 </parent>
9
Rob Daugherty9de3ce02017-08-04 12:15:51 -040010 <groupId>org.openecomp.so</groupId>
ChrisC025301d2017-01-31 11:40:03 +010011 <artifactId>mso-api-handlers</artifactId>
12 <name>API Handler</name>
13 <description>API Handler for MSO</description>
14 <packaging>pom</packaging>
15
16 <modules>
17 <module>mso-requests-db</module>
18 <module>mso-api-handler-common</module>
19 <module>mso-api-handler-infra</module>
20 </modules>
ChrisC1ba1d192017-03-13 05:01:04 -070021
ChrisC025301d2017-01-31 11:40:03 +010022 <dependencies>
ChrisC025301d2017-01-31 11:40:03 +010023 <dependency>
24 <groupId>org.apache.httpcomponents</groupId>
25 <artifactId>httpcore</artifactId>
26 </dependency>
27 <dependency>
28 <groupId>org.apache.httpcomponents</groupId>
29 <artifactId>httpclient</artifactId>
30 </dependency>
31 </dependencies>
Rob Daugherty8047b7c2017-08-01 11:56:58 -040032</project>