pwielebs | a393ae3 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 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> |
| 6 | |
| 7 | <parent> |
| 8 | <artifactId>prh</artifactId> |
| 9 | <groupId>org.onap.dcaegen2.services</groupId> |
| 10 | <version>1.0.0-SNAPSHOT</version> |
| 11 | </parent> |
| 12 | |
pwielebs | cb85d68 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 13 | <artifactId>prh-commons</artifactId> |
| 14 | <groupId>org.onap.dcaegen2.services.prh</groupId> |
| 15 | <version>1.0.0-SNAPSHOT</version> |
pwielebs | a393ae3 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 16 | <packaging>jar</packaging> |
| 17 | |
pwielebs | cb85d68 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 18 | <properties> |
| 19 | <main.basedir>${project.parent.basedir}</main.basedir> |
| 20 | </properties> |
| 21 | |
pwielebs | a393ae3 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 22 | <dependencies> |
| 23 | <dependency> |
| 24 | <groupId>org.immutables</groupId> |
| 25 | <artifactId>value</artifactId> |
| 26 | </dependency> |
| 27 | <dependency> |
| 28 | <groupId>org.immutables</groupId> |
| 29 | <artifactId>gson</artifactId> |
| 30 | </dependency> |
| 31 | |
pwielebs | 0a42016 | 2018-05-14 16:52:05 +0200 | [diff] [blame] | 32 | <!-- TEST DEPENDENCIES--> |
| 33 | <dependency> |
| 34 | <groupId>org.junit.jupiter</groupId> |
| 35 | <artifactId>junit-jupiter-api</artifactId> |
| 36 | <scope>test</scope> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.junit.jupiter</groupId> |
| 40 | <artifactId>junit-jupiter-engine</artifactId> |
| 41 | <scope>test</scope> |
| 42 | </dependency> |
pwielebs | a393ae3 | 2018-05-07 16:58:20 +0200 | [diff] [blame] | 43 | </dependencies> |
| 44 | </project> |