Benjamin, Max (mb388a) | dfdb5a1 | 2018-09-10 09:28:05 -0400 | [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 | |
| 5 | <parent> |
| 6 | <groupId>org.onap.so</groupId> |
| 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> |
Benjamin, Max (mb388a) | dfdb5a1 | 2018-09-10 09:28:05 -0400 | [diff] [blame] | 9 | </parent> |
| 10 | |
| 11 | <artifactId>mso-requests-db-repositories</artifactId> |
| 12 | |
| 13 | <name>mso-requests-db-repositories</name> |
| 14 | <description>SO Request Database JPA Respositories</description> |
| 15 | <properties> |
| 16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 17 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 18 | </properties> |
| 19 | <dependencies> |
| 20 | <dependency> |
| 21 | <groupId>org.onap.so</groupId> |
| 22 | <artifactId>mso-requests-db</artifactId> |
| 23 | <version>${project.version}</version> |
| 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>org.springframework.boot</groupId> |
| 27 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 28 | <optional>true</optional> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>org.springframework.boot</groupId> |
| 32 | <artifactId>spring-boot-starter-data-rest</artifactId> |
| 33 | <optional>true</optional> |
| 34 | </dependency> |
| 35 | <dependency> |
| 36 | <groupId>com.h2database</groupId> |
| 37 | <artifactId>h2</artifactId> |
| 38 | <scope>test</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.mariadb.jdbc</groupId> |
| 42 | <artifactId>mariadb-java-client</artifactId> |
| 43 | <scope>test</scope> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.springframework.boot</groupId> |
| 47 | <artifactId>spring-boot-starter-test</artifactId> |
| 48 | <scope>test</scope> |
| 49 | </dependency> |
| 50 | </dependencies> |
| 51 | <packaging>jar</packaging> |
| 52 | <build> |
| 53 | <finalName>${project.artifactId}</finalName> |
| 54 | </build> |
Rob Daugherty | 325d4e2 | 2018-10-19 15:13:38 -0400 | [diff] [blame^] | 55 | </project> |