blob: 1f832b8c603adf858ab19fbd0a162a1915fc380b [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>adapters</artifactId>
11 <name>MSO Adapters</name>
12 <description>Adapters for MSO</description>
13 <packaging>pom</packaging>
14
15 <modules>
16 <module>mso-adapter-utils</module>
17 <module>mso-adapters-rest-interface</module>
Rob Daugherty38f72072018-03-14 02:07:32 -040018 <module>mso-vnf-adapter-async-client</module>
ChrisC025301d2017-01-31 11:40:03 +010019 <module>mso-network-adapter-async-client</module>
Rob Daugherty38f72072018-03-14 02:07:32 -040020 <module>mso-network-adapter</module>
ChrisC025301d2017-01-31 11:40:03 +010021 <module>mso-sdnc-adapter</module>
22 <!--<module>mso-appc-adapter</module>-->
23 <module>mso-tenant-adapter</module>
24 <module>mso-vnf-adapter</module>
ChrisC025301d2017-01-31 11:40:03 +010025 <module>mso-requests-db-adapter</module>
xg353yb6b7bef2017-04-11 13:30:42 +020026 <module>mso-catalog-db-adapter</module>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070027 <module>mso-workflow-message-adapter</module>
c0014910726b7c9d2017-08-31 14:27:38 +080028 <module>mso-vfc-adapter</module>
ChrisC025301d2017-01-31 11:40:03 +010029 </modules>
ChrisC025301d2017-01-31 11:40:03 +010030 <dependencies>
ChrisC025301d2017-01-31 11:40:03 +010031 <dependency>
32 <groupId>org.apache.httpcomponents</groupId>
33 <artifactId>httpclient</artifactId>
34 </dependency>
35 <dependency>
36 <groupId>org.apache.httpcomponents</groupId>
37 <artifactId>httpcore</artifactId>
38 </dependency>
Lukasz Muszkietaa3a14802018-01-17 14:47:00 +010039 <dependency>
40 <groupId>org.assertj</groupId>
41 <artifactId>assertj-core</artifactId>
42 <version>3.9.0</version>
43 <scope>test</scope>
44 </dependency>
ChrisC025301d2017-01-31 11:40:03 +010045 </dependencies>
46</project>