sb5356 | 5a893ea | 2020-04-09 12:58:43 -0400 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
sb5356 | 1c1791c | 2020-03-30 13:14:46 -0400 | [diff] [blame] | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
sb5356 | 5a893ea | 2020-04-09 12:58:43 -0400 | [diff] [blame] | 7 | <parent> |
sb5356 | 1c1791c | 2020-03-30 13:14:46 -0400 | [diff] [blame] | 8 | <groupId>org.onap.ccsdk.features</groupId> |
| 9 | <artifactId>ccsdk-features</artifactId> |
| 10 | <version>1.0.0-SNAPSHOT</version> |
sb5356 | 5a893ea | 2020-04-09 12:58:43 -0400 | [diff] [blame] | 11 | <relativePath>../..</relativePath> |
| 12 | </parent> |
sb5356 | 1c1791c | 2020-03-30 13:14:46 -0400 | [diff] [blame] | 13 | |
| 14 | <groupId>org.onap.ccsdk.features.lib.rlock</groupId> |
| 15 | <artifactId>rlock</artifactId> |
| 16 | |
| 17 | <description>Resource Lock - Distributed locking feature using database</description> |
| 18 | |
| 19 | <dependencies> |
| 20 | |
| 21 | <dependency> |
| 22 | <groupId>org.slf4j</groupId> |
| 23 | <artifactId>slf4j-api</artifactId> |
sb5356 | 1c1791c | 2020-03-30 13:14:46 -0400 | [diff] [blame] | 24 | </dependency> |
| 25 | |
| 26 | <dependency> |
| 27 | <groupId>junit</groupId> |
| 28 | <artifactId>junit</artifactId> |
| 29 | <scope>test</scope> |
| 30 | </dependency> |
| 31 | <dependency> |
| 32 | <groupId>com.h2database</groupId> |
| 33 | <artifactId>h2</artifactId> |
| 34 | <scope>test</scope> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>org.slf4j</groupId> |
| 38 | <artifactId>slf4j-simple</artifactId> |
| 39 | <scope>test</scope> |
| 40 | </dependency> |
| 41 | |
| 42 | </dependencies> |
| 43 | |
| 44 | </project> |