blob: 71ad9ced4435efdcc113243228ae6120a527a6af [file] [log] [blame]
Benjamin, Max (mb388a)dfdb5a12018-09-10 09:28:05 -04001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04002 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>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04004 <parent>
5 <groupId>org.onap.so</groupId>
6 <artifactId>mso-api-handlers</artifactId>
waqas.ikram98537632021-06-24 11:51:34 +01007 <version>1.9.0-SNAPSHOT</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04008 </parent>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04009 <artifactId>mso-requests-db-repositories</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040010 <name>mso-requests-db-repositories</name>
11 <description>SO Request Database JPA Respositories</description>
12 <properties>
13 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
15 </properties>
16 <dependencies>
17 <dependency>
18 <groupId>org.onap.so</groupId>
19 <artifactId>mso-requests-db</artifactId>
20 <version>${project.version}</version>
21 </dependency>
22 <dependency>
23 <groupId>org.springframework.boot</groupId>
24 <artifactId>spring-boot-starter-data-jpa</artifactId>
25 <optional>true</optional>
26 </dependency>
27 <dependency>
28 <groupId>org.springframework.boot</groupId>
29 <artifactId>spring-boot-starter-data-rest</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040030 </dependency>
31 <dependency>
32 <groupId>com.h2database</groupId>
33 <artifactId>h2</artifactId>
34 <scope>test</scope>
35 </dependency>
36 <dependency>
37 <groupId>org.mariadb.jdbc</groupId>
38 <artifactId>mariadb-java-client</artifactId>
39 <scope>test</scope>
40 </dependency>
41 <dependency>
42 <groupId>org.springframework.boot</groupId>
43 <artifactId>spring-boot-starter-test</artifactId>
44 <scope>test</scope>
45 </dependency>
46 </dependencies>
47 <packaging>jar</packaging>
48 <build>
49 <finalName>${project.artifactId}</finalName>
50 </build>
Rob Daugherty325d4e22018-10-19 15:13:38 -040051</project>