noahs | f9f112f | 2017-12-06 13:11:38 +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 | |
| 6 | <modelVersion>4.0.0</modelVersion> |
| 7 | <artifactId>openecomp-sdc-logging-api</artifactId> |
| 8 | <name>openecomp-sdc-logging-api</name> |
| 9 | |
| 10 | <parent> |
| 11 | <groupId>org.openecomp.sdc</groupId> |
| 12 | <artifactId>openecomp-sdc-logging-lib</artifactId> |
| 13 | <version>1.2.0-SNAPSHOT</version> |
| 14 | </parent> |
| 15 | |
| 16 | <dependencies> |
| 17 | <dependency> |
| 18 | <groupId>org.slf4j</groupId> |
| 19 | <artifactId>slf4j-api</artifactId> |
| 20 | <version>${slf4j-api.version}</version> |
| 21 | </dependency> |
| 22 | <dependency> |
| 23 | <groupId>org.slf4j</groupId> |
| 24 | <artifactId>slf4j-simple</artifactId> |
| 25 | <version>${slf4j.version}</version> |
| 26 | <scope>test</scope> |
| 27 | </dependency> |
| 28 | <dependency> |
| 29 | <groupId>org.testng</groupId> |
| 30 | <artifactId>testng</artifactId> |
| 31 | <version>${testng.version}</version> |
| 32 | <scope>test</scope> |
| 33 | </dependency> |
| 34 | </dependencies> |
| 35 | |
| 36 | </project> |