pwielebs | a393ae3 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
micdzied | 6fd8c77 | 2018-08-30 10:25:19 +0200 | [diff] [blame^] | 2 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xmlns="http://maven.apache.org/POM/4.0.0" |
wasala | 2a6eb94 | 2018-06-18 11:45:08 +0200 | [diff] [blame] | 4 | 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> |
pwielebs | a393ae3 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 6 | |
wasala | 2a6eb94 | 2018-06-18 11:45:08 +0200 | [diff] [blame] | 7 | <parent> |
| 8 | <artifactId>prh</artifactId> |
| 9 | <groupId>org.onap.dcaegen2.services</groupId> |
pwielebs | cb85d68 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 10 | <version>1.0.0-SNAPSHOT</version> |
wasala | 2a6eb94 | 2018-06-18 11:45:08 +0200 | [diff] [blame] | 11 | </parent> |
pwielebs | a393ae3 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 12 | |
wasala | 2a6eb94 | 2018-06-18 11:45:08 +0200 | [diff] [blame] | 13 | <artifactId>prh-commons</artifactId> |
| 14 | <groupId>org.onap.dcaegen2.services.prh</groupId> |
| 15 | <version>1.0.0-SNAPSHOT</version> |
| 16 | <packaging>jar</packaging> |
pwielebs | cb85d68 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 17 | |
wasala | 2a6eb94 | 2018-06-18 11:45:08 +0200 | [diff] [blame] | 18 | <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> |
pwielebs | a393ae3 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 38 | |
wasala | 2a6eb94 | 2018-06-18 11:45:08 +0200 | [diff] [blame] | 39 | <!-- 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> |
pwielebs | 7ddaf39 | 2018-05-23 15:31:11 +0200 | [diff] [blame] | 55 | |
wasala | 2a6eb94 | 2018-06-18 11:45:08 +0200 | [diff] [blame] | 56 | <!-- 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> |
pwielebs | a393ae3 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 70 | </project> |