Add new modules: Resource Lock and Doorman
[ccsdk/features.git] / lib / doorman / pom.xml
1 <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.doorman</groupId>
13         <artifactId>doorman</artifactId>
14
15         <description>Doorman - Request prioritization and agregation queue</description>
16
17         <dependencies>
18
19                 <dependency>
20                         <groupId>javax.servlet</groupId>
21                         <artifactId>servlet-api</artifactId>
22                         <scope>provided</scope>
23                 </dependency>
24                 <dependency>
25                         <groupId>org.slf4j</groupId>
26                         <artifactId>slf4j-api</artifactId>
27                         <scope>provided</scope>
28                 </dependency>
29                 <dependency>
30                         <groupId>org.onap.ccsdk.features.lib.rlock</groupId>
31                         <artifactId>rlock</artifactId>
32                         <version>1.0.0-SNAPSHOT</version>
33                         <scope>provided</scope>
34                 </dependency>
35
36                 <dependency>
37                         <groupId>junit</groupId>
38                         <artifactId>junit</artifactId>
39                         <scope>test</scope>
40                 </dependency>
41                 <dependency>
42                         <groupId>com.h2database</groupId>
43                         <artifactId>h2</artifactId>
44                         <scope>test</scope>
45                 </dependency>
46                 <dependency>
47                         <groupId>org.slf4j</groupId>
48                         <artifactId>slf4j-simple</artifactId>
49                         <scope>test</scope>
50                 </dependency>
51
52         </dependencies>
53
54 </project>