Addressing issues from review
[ccsdk/features.git] / lib / rlock / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         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
7         <parent>
8                 <groupId>org.onap.ccsdk.features</groupId>
9                 <artifactId>ccsdk-features</artifactId>
10                 <version>1.0.0-SNAPSHOT</version>
11                 <relativePath>../..</relativePath>
12         </parent>
13
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>
24                 </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>