Release version 1.1.0 of features
[ccsdk/features.git] / lib / rlock / pom.xml
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">
3         <modelVersion>4.0.0</modelVersion>
4
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>
11
12         <groupId>org.onap.ccsdk.features.lib.rlock</groupId>
13         <artifactId>rlock</artifactId>
14
15         <name>ccsdk-features :: ${project.artifactId}</name>
16         <description>Resource Lock - Distributed locking feature using database</description>
17
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>
38
39             </dependencies>
40 </project>