Roll to next snapshot
[ccsdk/features.git] / lib / doorman / 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
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.1-SNAPSHOT</version>
10                 <relativePath>../..</relativePath>
11         </parent>
12
13         <groupId>org.onap.ccsdk.features.lib.doorman</groupId>
14         <artifactId>doorman</artifactId>
15
16         <description>Doorman - Request prioritization and aggregation queue</description>
17
18         <dependencies>
19
20                 <dependency>
21                         <groupId>javax.servlet</groupId>
22                         <artifactId>servlet-api</artifactId>
23                 </dependency>
24                 <dependency>
25                         <groupId>org.slf4j</groupId>
26                         <artifactId>slf4j-api</artifactId>
27                 </dependency>
28                 <dependency>
29                         <groupId>org.onap.ccsdk.features.lib.rlock</groupId>
30                         <artifactId>rlock</artifactId>
31                         <version>1.0.1-SNAPSHOT</version>
32                 </dependency>
33
34                 <dependency>
35                         <groupId>junit</groupId>
36                         <artifactId>junit</artifactId>
37                         <scope>test</scope>
38                 </dependency>
39                 <dependency>
40                         <groupId>com.h2database</groupId>
41                         <artifactId>h2</artifactId>
42                         <scope>test</scope>
43                 </dependency>
44                 <dependency>
45                         <groupId>org.slf4j</groupId>
46                         <artifactId>slf4j-simple</artifactId>
47                         <scope>test</scope>
48                 </dependency>
49
50         </dependencies>
51
52 </project>