blob: fca0a086b970c7e962441c9e23d520fbfbba3ff3 [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">
sb53561c1791c2020-03-30 13:14:46 -04003
4 <modelVersion>4.0.0</modelVersion>
5
sb53565a893ea2020-04-09 12:58:43 -04006 <parent>
sb53561c1791c2020-03-30 13:14:46 -04007 <groupId>org.onap.ccsdk.features</groupId>
8 <artifactId>ccsdk-features</artifactId>
Dan Timoney92037092020-08-06 15:28:15 -04009 <version>1.0.1-SNAPSHOT</version>
sb53565a893ea2020-04-09 12:58:43 -040010 <relativePath>../..</relativePath>
11 </parent>
sb53561c1791c2020-03-30 13:14:46 -040012
13 <groupId>org.onap.ccsdk.features.lib.doorman</groupId>
14 <artifactId>doorman</artifactId>
15
sb53565a893ea2020-04-09 12:58:43 -040016 <description>Doorman - Request prioritization and aggregation queue</description>
sb53561c1791c2020-03-30 13:14:46 -040017
18 <dependencies>
19
20 <dependency>
21 <groupId>javax.servlet</groupId>
22 <artifactId>servlet-api</artifactId>
sb53561c1791c2020-03-30 13:14:46 -040023 </dependency>
24 <dependency>
25 <groupId>org.slf4j</groupId>
26 <artifactId>slf4j-api</artifactId>
sb53561c1791c2020-03-30 13:14:46 -040027 </dependency>
28 <dependency>
29 <groupId>org.onap.ccsdk.features.lib.rlock</groupId>
30 <artifactId>rlock</artifactId>
Dan Timoney92037092020-08-06 15:28:15 -040031 <version>1.0.1-SNAPSHOT</version>
sb53561c1791c2020-03-30 13:14:46 -040032 </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>