ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 1 | <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 Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 5 | <groupId>org.onap.so</groupId> |
Rob Daugherty | 2641935 | 2017-08-04 15:55:54 -0400 | [diff] [blame] | 6 | <artifactId>so</artifactId> |
Jessica Wagantall | 777f637 | 2017-11-20 11:10:28 -0800 | [diff] [blame] | 7 | <version>1.2.0-SNAPSHOT</version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 8 | </parent> |
| 9 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 10 | <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 Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 18 | <module>mso-vnf-adapter-async-client</module> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 19 | <module>mso-network-adapter-async-client</module> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 20 | <module>mso-network-adapter</module> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 21 | <module>mso-sdnc-adapter</module> |
| 22 | <!--<module>mso-appc-adapter</module>--> |
| 23 | <module>mso-tenant-adapter</module> |
| 24 | <module>mso-vnf-adapter</module> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 25 | <module>mso-requests-db-adapter</module> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 26 | <module>mso-catalog-db-adapter</module> |
Determe, Sebastien (sd378r) | 94ee925 | 2017-05-02 03:53:18 -0700 | [diff] [blame] | 27 | <module>mso-workflow-message-adapter</module> |
c00149107 | 26b7c9d | 2017-08-31 14:27:38 +0800 | [diff] [blame] | 28 | <module>mso-vfc-adapter</module> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 29 | </modules> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 30 | <dependencies> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 31 | <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 Muszkieta | a3a1480 | 2018-01-17 14:47:00 +0100 | [diff] [blame] | 39 | <dependency> |
| 40 | <groupId>org.assertj</groupId> |
| 41 | <artifactId>assertj-core</artifactId> |
| 42 | <version>3.9.0</version> |
| 43 | <scope>test</scope> |
| 44 | </dependency> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 45 | </dependencies> |
| 46 | </project> |