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"> |
Singal, Kapil (ks220y) | 30a5975 | 2020-12-18 13:21:28 -0500 | [diff] [blame^] | 3 | <modelVersion>4.0.0</modelVersion> |
sb5356 | 1c1791c | 2020-03-30 13:14:46 -0400 | [diff] [blame] | 4 | |
Singal, Kapil (ks220y) | 30a5975 | 2020-12-18 13:21:28 -0500 | [diff] [blame^] | 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.features</groupId> |
| 7 | <artifactId>ccsdk-features</artifactId> |
| 8 | <version>1.1.1-SNAPSHOT</version> |
| 9 | <relativePath>../..</relativePath> |
| 10 | </parent> |
sb5356 | 1c1791c | 2020-03-30 13:14:46 -0400 | [diff] [blame] | 11 | |
Singal, Kapil (ks220y) | 30a5975 | 2020-12-18 13:21:28 -0500 | [diff] [blame^] | 12 | <groupId>org.onap.ccsdk.features.lib.rlock</groupId> |
| 13 | <artifactId>rlock</artifactId> |
sb5356 | 1c1791c | 2020-03-30 13:14:46 -0400 | [diff] [blame] | 14 | |
Singal, Kapil (ks220y) | 30a5975 | 2020-12-18 13:21:28 -0500 | [diff] [blame^] | 15 | <name>ccsdk-features :: lib :: ${project.artifactId}</name> |
| 16 | <description>Resource Lock - Distributed locking feature using database</description> |
sb5356 | 1c1791c | 2020-03-30 13:14:46 -0400 | [diff] [blame] | 17 | |
Singal, Kapil (ks220y) | 30a5975 | 2020-12-18 13:21:28 -0500 | [diff] [blame^] | 18 | <dependencies> |
| 19 | <dependency> |
| 20 | <groupId>org.slf4j</groupId> |
| 21 | <artifactId>slf4j-api</artifactId> |
| 22 | </dependency> |
| 23 | <dependency> |
| 24 | <groupId>junit</groupId> |
| 25 | <artifactId>junit</artifactId> |
| 26 | <scope>test</scope> |
| 27 | </dependency> |
| 28 | <dependency> |
| 29 | <groupId>com.h2database</groupId> |
| 30 | <artifactId>h2</artifactId> |
| 31 | <scope>test</scope> |
| 32 | </dependency> |
| 33 | <dependency> |
| 34 | <groupId>org.slf4j</groupId> |
| 35 | <artifactId>slf4j-simple</artifactId> |
| 36 | <scope>test</scope> |
| 37 | </dependency> |
sb5356 | 1c1791c | 2020-03-30 13:14:46 -0400 | [diff] [blame] | 38 | |
Singal, Kapil (ks220y) | 30a5975 | 2020-12-18 13:21:28 -0500 | [diff] [blame^] | 39 | </dependencies> |
sb5356 | 1c1791c | 2020-03-30 13:14:46 -0400 | [diff] [blame] | 40 | </project> |