blob: a204a4ef91503319ba019e0f091c4f82378ad4c0 [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.doorman</groupId>
13 <artifactId>doorman</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>Doorman - Request prioritization and aggregation queue</description>
sb53561c1791c2020-03-30 13:14:46 -040017
Singal, Kapil (ks220y)30a59752020-12-18 13:21:28 -050018 <dependencies>
19 <dependency>
20 <groupId>javax.servlet</groupId>
21 <artifactId>servlet-api</artifactId>
22 </dependency>
23 <dependency>
24 <groupId>org.slf4j</groupId>
25 <artifactId>slf4j-api</artifactId>
26 </dependency>
27 <dependency>
28 <groupId>org.onap.ccsdk.features.lib.rlock</groupId>
29 <artifactId>rlock</artifactId>
30 <version>1.1.1-SNAPSHOT</version>
31 </dependency>
32 <dependency>
33 <groupId>junit</groupId>
34 <artifactId>junit</artifactId>
35 <scope>test</scope>
36 </dependency>
37 <dependency>
38 <groupId>com.h2database</groupId>
39 <artifactId>h2</artifactId>
40 <scope>test</scope>
41 </dependency>
42 <dependency>
43 <groupId>org.slf4j</groupId>
44 <artifactId>slf4j-simple</artifactId>
45 <scope>test</scope>
46 </dependency>
sb53561c1791c2020-03-30 13:14:46 -040047
Singal, Kapil (ks220y)30a59752020-12-18 13:21:28 -050048 </dependencies>
sb53561c1791c2020-03-30 13:14:46 -040049</project>