blob: 24df9c3479e8863d502ecd29e67f0908f5a3b97f [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">
Singal, Kapil (ks220y)30a59752020-12-18 13:21:28 -05003 <modelVersion>4.0.0</modelVersion>
sb53561c1791c2020-03-30 13:14:46 -04004
Singal, Kapil (ks220y)30a59752020-12-18 13:21:28 -05005 <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>
sb53561c1791c2020-03-30 13:14:46 -040011
Singal, Kapil (ks220y)30a59752020-12-18 13:21:28 -050012 <groupId>org.onap.ccsdk.features.lib.rlock</groupId>
13 <artifactId>rlock</artifactId>
sb53561c1791c2020-03-30 13:14:46 -040014
Singal, Kapil (ks220y)30a59752020-12-18 13:21:28 -050015 <name>ccsdk-features :: lib :: ${project.artifactId}</name>
16 <description>Resource Lock - Distributed locking feature using database</description>
sb53561c1791c2020-03-30 13:14:46 -040017
Singal, Kapil (ks220y)30a59752020-12-18 13:21:28 -050018 <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>
sb53561c1791c2020-03-30 13:14:46 -040038
Singal, Kapil (ks220y)30a59752020-12-18 13:21:28 -050039 </dependencies>
sb53561c1791c2020-03-30 13:14:46 -040040</project>