blob: b4d5c7070a2ba601735bf4fc35477b30d4d51a8f [file] [log] [blame]
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04001<?xml version="1.0" encoding="UTF-8"?>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04002<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.onap.so</groupId>
7 <artifactId>so</artifactId>
8 <version>1.4.0-SNAPSHOT</version>
9 </parent>
ChrisC025301d2017-01-31 11:40:03 +010010
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040011 <artifactId>mso-api-handlers</artifactId>
12 <name>API Handler</name>
13 <description>API Handler for MSO</description>
14 <packaging>pom</packaging>
ChrisC025301d2017-01-31 11:40:03 +010015
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040016 <modules>
17 <module>mso-requests-db</module>
18 <module>mso-requests-db-repositories</module>
19 <module>mso-api-handler-common</module>
20 <module>mso-api-handler-infra</module>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040021 </modules>
ChrisC1ba1d192017-03-13 05:01:04 -070022
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040023 <dependencies>
24 <dependency>
25 <groupId>org.apache.httpcomponents</groupId>
26 <artifactId>httpcore</artifactId>
27 </dependency>
28 <dependency>
29 <groupId>org.apache.httpcomponents</groupId>
30 <artifactId>httpclient</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>junit</groupId>
34 <artifactId>junit</artifactId>
35 <scope>test</scope>
36 </dependency>
37 </dependencies>
Rob Daugherty325d4e22018-10-19 15:13:38 -040038</project>