blob: d116b6505837663e0f0d31f9df347669d6105c07 [file] [log] [blame]
Dan Timoney92037092020-08-06 15:28:15 -04001<?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">
sb53561c1791c2020-03-30 13:14:46 -04003
4 <modelVersion>4.0.0</modelVersion>
5
sb53565a893ea2020-04-09 12:58:43 -04006 <parent>
sb53561c1791c2020-03-30 13:14:46 -04007 <groupId>org.onap.ccsdk.features</groupId>
8 <artifactId>ccsdk-features</artifactId>
Dan Timoney92037092020-08-06 15:28:15 -04009 <version>1.0.1-SNAPSHOT</version>
sb53565a893ea2020-04-09 12:58:43 -040010 <relativePath>../..</relativePath>
11 </parent>
sb53561c1791c2020-03-30 13:14:46 -040012
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>
sb53561c1791c2020-03-30 13:14:46 -040023 </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>