blob: 51b778bada820f431c55a6a840b8d5dcb2ab95cd [file] [log] [blame]
sb53561c1791c2020-03-30 13:14:46 -04001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
4 <modelVersion>4.0.0</modelVersion>
5
6 <parent>
7 <groupId>org.onap.ccsdk.features</groupId>
8 <artifactId>ccsdk-features</artifactId>
9 <version>1.0.0-SNAPSHOT</version>
10 </parent>
11
12 <groupId>org.onap.ccsdk.features.lib.rlock</groupId>
13 <artifactId>rlock</artifactId>
14
15 <description>Resource Lock - Distributed locking feature using database</description>
16
17 <dependencies>
18
19 <dependency>
20 <groupId>org.slf4j</groupId>
21 <artifactId>slf4j-api</artifactId>
22 <scope>provided</scope>
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>