Addressing issues from review
[ccsdk/features.git] / lib / doorman / 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.doorman</groupId>
15         <artifactId>doorman</artifactId>
16
17         <description>Doorman - Request prioritization and aggregation queue</description>
18
19         <dependencies>
20
21                 <dependency>
22                         <groupId>javax.servlet</groupId>
23                         <artifactId>servlet-api</artifactId>
24                 </dependency>
25                 <dependency>
26                         <groupId>org.slf4j</groupId>
27                         <artifactId>slf4j-api</artifactId>
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                 </dependency>
34
35                 <dependency>
36                         <groupId>junit</groupId>
37                         <artifactId>junit</artifactId>
38                         <scope>test</scope>
39                 </dependency>
40                 <dependency>
41                         <groupId>com.h2database</groupId>
42                         <artifactId>h2</artifactId>
43                         <scope>test</scope>
44                 </dependency>
45                 <dependency>
46                         <groupId>org.slf4j</groupId>
47                         <artifactId>slf4j-simple</artifactId>
48                         <scope>test</scope>
49                 </dependency>
50
51         </dependencies>
52
53 </project>