blob: 3494859f7aa6e3c38360b65f65a666be9a47910a [file] [log] [blame]
sb53565a893ea2020-04-09 12:58:43 -04001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
sb53561c1791c2020-03-30 13:14:46 -04003 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
sb53565a893ea2020-04-09 12:58:43 -04007 <parent>
sb53561c1791c2020-03-30 13:14:46 -04008 <groupId>org.onap.ccsdk.features</groupId>
9 <artifactId>ccsdk-features</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
sb53565a893ea2020-04-09 12:58:43 -040011 <relativePath>../..</relativePath>
12 </parent>
sb53561c1791c2020-03-30 13:14:46 -040013
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>
sb53561c1791c2020-03-30 13:14:46 -040024 </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>