blob: 41b0a331ab8615b82ff102a6a97aea3a28a325fc [file] [log] [blame]
pwielebsa393ae32018-05-07 16:58:20 +02001<?xml version="1.0" encoding="UTF-8"?>
micdzied6fd8c772018-08-30 10:25:19 +02002<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xmlns="http://maven.apache.org/POM/4.0.0"
wasala2a6eb942018-06-18 11:45:08 +02004 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
pwielebsa393ae32018-05-07 16:58:20 +02006
wasala2a6eb942018-06-18 11:45:08 +02007 <parent>
8 <artifactId>prh</artifactId>
9 <groupId>org.onap.dcaegen2.services</groupId>
pwielebscb85d682018-05-07 16:58:20 +020010 <version>1.0.0-SNAPSHOT</version>
wasala2a6eb942018-06-18 11:45:08 +020011 </parent>
pwielebsa393ae32018-05-07 16:58:20 +020012
wasala2a6eb942018-06-18 11:45:08 +020013 <artifactId>prh-commons</artifactId>
14 <groupId>org.onap.dcaegen2.services.prh</groupId>
15 <version>1.0.0-SNAPSHOT</version>
16 <packaging>jar</packaging>
pwielebscb85d682018-05-07 16:58:20 +020017
wasala2a6eb942018-06-18 11:45:08 +020018 <properties>
19 <main.basedir>${project.parent.basedir}</main.basedir>
20 </properties>
21 <dependencies>
22 <dependency>
23 <groupId>org.immutables</groupId>
24 <artifactId>value</artifactId>
25 </dependency>
26 <dependency>
27 <groupId>org.immutables</groupId>
28 <artifactId>gson</artifactId>
29 </dependency>
30 <dependency>
31 <groupId>org.apache.httpcomponents</groupId>
32 <artifactId>httpclient</artifactId>
33 </dependency>
34 <dependency>
35 <groupId>org.apache.commons</groupId>
36 <artifactId>commons-lang3</artifactId>
37 </dependency>
pwielebsa393ae32018-05-07 16:58:20 +020038
wasala2a6eb942018-06-18 11:45:08 +020039 <!-- TEST DEPENDENCIES-->
40 <dependency>
41 <groupId>org.junit.jupiter</groupId>
42 <artifactId>junit-jupiter-api</artifactId>
43 <scope>test</scope>
44 </dependency>
45 <dependency>
46 <groupId>org.junit.jupiter</groupId>
47 <artifactId>junit-jupiter-engine</artifactId>
48 <scope>test</scope>
49 </dependency>
50 <dependency>
51 <groupId>org.mockito</groupId>
52 <artifactId>mockito-core</artifactId>
53 <scope>test</scope>
54 </dependency>
pwielebs7ddaf392018-05-23 15:31:11 +020055
wasala2a6eb942018-06-18 11:45:08 +020056 <!-- LOGGING DEPENDENCIES-->
57 <dependency>
58 <groupId>ch.qos.logback</groupId>
59 <artifactId>logback-classic</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>org.slf4j</groupId>
63 <artifactId>jul-to-slf4j</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.slf4j</groupId>
67 <artifactId>log4j-over-slf4j</artifactId>
68 </dependency>
69 </dependencies>
pwielebsa393ae32018-05-07 16:58:20 +020070</project>