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 | |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 5 | <parent> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 6 | <groupId>org.onap.so</groupId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 7 | <artifactId>mso-api-handlers</artifactId> |
Rob Daugherty | 325d4e2 | 2018-10-19 15:13:38 -0400 | [diff] [blame] | 8 | <version>1.4.0-SNAPSHOT</version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 9 | </parent> |
| 10 | |
| 11 | <artifactId>mso-requests-db</artifactId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 12 | <name>mso-requests-db</name> |
| 13 | <description>MSO Requests Database definition and Hibernate objects</description> |
| 14 | <properties> |
| 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 16 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 17 | </properties> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 18 | <dependencies> |
| 19 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 20 | <groupId>uk.co.blackpepper.bowman</groupId> |
| 21 | <artifactId>bowman-client</artifactId> |
| 22 | <version>0.3.0</version> |
Benjamin, Max (mb388a) | dfdb5a1 | 2018-09-10 09:28:05 -0400 | [diff] [blame] | 23 | </dependency> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 24 | <dependency> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 25 | <groupId>org.onap.so</groupId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 26 | <artifactId>common</artifactId> |
| 27 | <version>${project.version}</version> |
Benjamin, Max (mb388a) | dfdb5a1 | 2018-09-10 09:28:05 -0400 | [diff] [blame] | 28 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 29 | <dependency> |
| 30 | <groupId>org.springframework.boot</groupId> |
| 31 | <artifactId>spring-boot-starter-test</artifactId> |
| 32 | <scope>test</scope> |
| 33 | </dependency> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 34 | </dependencies> |
| 35 | <packaging>jar</packaging> |
| 36 | <build> |
Benjamin, Max (mb388a) | dfdb5a1 | 2018-09-10 09:28:05 -0400 | [diff] [blame] | 37 | <finalName>${project.artifactId}</finalName> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 38 | </build> |
Rob Daugherty | 325d4e2 | 2018-10-19 15:13:38 -0400 | [diff] [blame] | 39 | </project> |