Indenting POM's and running mvn tidy:pom
[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     <modelVersion>4.0.0</modelVersion>
4
5     <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>
11
12     <groupId>org.onap.ccsdk.features.lib.doorman</groupId>
13     <artifactId>doorman</artifactId>
14
15     <name>ccsdk-features :: lib :: ${project.artifactId}</name>
16     <description>Doorman - Request prioritization and aggregation queue</description>
17
18     <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>
47
48     </dependencies>
49 </project>