Initial OpenECOMP MSO commit
[so.git] / status-control / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.openecomp</groupId>
8         <artifactId>mso</artifactId>
9         <version>0.0.4-SNAPSHOT</version>
10     </parent>
11
12     <groupId>org.openecomp.mso</groupId>
13     <artifactId>status-control</artifactId>
14     <name>MSO Status Control module</name>
15     <description>Contains classes to update and query the MSO status per site</description>
16
17     <dependencies>
18         <dependency>
19             <groupId>org.openecomp.mso</groupId>
20             <artifactId>common</artifactId>
21             <version>${project.version}</version>
22         </dependency>
23         <dependency>
24             <groupId>org.openecomp.mso</groupId>
25             <artifactId>mso-catalog-db</artifactId>
26             <version>${project.version}</version>
27         </dependency>
28         <dependency>
29             <groupId>org.openecomp.mso</groupId>
30             <artifactId>mso-requests-db</artifactId>
31             <version>${project.version}</version>
32         </dependency>
33         <dependency>
34             <groupId>javax.servlet</groupId>
35             <artifactId>javax.servlet-api</artifactId>
36             <version>3.1.0</version>
37             <scope>provided</scope>
38         </dependency>
39         <dependency>
40             <groupId>org.jboss.resteasy</groupId>
41             <artifactId>resteasy-jaxrs</artifactId>
42             <version>3.0.19.Final</version>
43             <scope>provided</scope>
44             <exclusions>
45                 <exclusion>
46                     <groupId>org.slf4j</groupId>
47                     <artifactId>slf4j-api</artifactId>
48                 </exclusion>
49                 <exclusion>
50                     <groupId>org.slf4j</groupId>
51                     <artifactId>slf4j-simple</artifactId>
52                 </exclusion>
53                 <exclusion>
54                     <groupId>org.apache.httpcomponents</groupId>
55                     <artifactId>httpclient</artifactId>
56                 </exclusion>
57             </exclusions>
58         </dependency>
59         <dependency>
60             <groupId>org.mockito</groupId>
61             <artifactId>mockito-all</artifactId>
62             <version>1.10.19</version>
63             <scope>test</scope>
64         </dependency>
65         
66                 <dependency>
67                         <groupId>org.apache.httpcomponents</groupId>
68                         <artifactId>httpcore</artifactId>
69                 </dependency>
70                 
71                 <dependency>
72                         <groupId>org.apache.httpcomponents</groupId>
73                         <artifactId>httpclient</artifactId>
74                 </dependency>
75                 
76     </dependencies>
77 </project>