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