Merge "Rainy day UTs for rest interfaces"
[so.git] / asdc-controller / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         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         <parent>
5                 <groupId>org.onap.so</groupId>
6                 <artifactId>so</artifactId>
7                 <version>1.2.0-SNAPSHOT</version>
8         </parent>
9
10         <artifactId>asdc-controller</artifactId>
11         <name>asdc-controller</name>
12         <description>ASDC CLient and Controller</description>
13         <packaging>war</packaging>
14
15         <build>
16                 <finalName>${project.artifactId}-${project.version}</finalName>
17                 <plugins>
18                         <plugin>
19                                 <artifactId>maven-war-plugin</artifactId>
20                                 <version>2.4</version>
21                                 <configuration>
22                                         <warSourceDirectory>WebContent</warSourceDirectory>
23                                         <failOnMissingWebXml>false</failOnMissingWebXml>
24                                         <attachClasses>true</attachClasses>
25                                 </configuration>
26                         </plugin>
27                 </plugins>
28         </build>
29
30         <dependencies>
31                 <dependency>
32                         <groupId>org.jmockit</groupId>
33                         <artifactId>jmockit</artifactId>
34                         <version>1.8</version>
35                         <scope>test</scope>
36                 </dependency>  
37                 <dependency>
38                         <groupId>org.onap.so</groupId>
39                         <artifactId>mso-catalog-db</artifactId>
40                         <version>${project.version}</version>
41                 </dependency>
42
43                 <dependency>
44                         <groupId>org.jboss.spec.javax.ejb</groupId>
45                         <artifactId>jboss-ejb-api_3.2_spec</artifactId>
46                         <version>1.0.0.Final</version>
47                         <scope>provided</scope>
48                 </dependency>
49                 <dependency>
50                         <groupId>org.jboss.ejb3</groupId>
51                         <artifactId>jboss-ejb3-ext-api</artifactId>
52                         <version>2.2.0.Final</version>
53                         <scope>provided</scope>
54                 </dependency>
55
56                 <dependency>
57                                 <groupId>javax.servlet</groupId>
58                                 <artifactId>javax.servlet-api</artifactId>
59                                 <version>3.1.0</version>
60                                 <scope>test</scope>
61                 </dependency>
62                 
63         <!--    <dependency>
64                                 <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
65                                 <artifactId>sdc-distribution-client</artifactId>
66                                 <version>1.1.16</version>
67                                 <exclusions>
68                                 <exclusion>  
69                                         <groupId>org.slf4j</groupId>
70                                         <artifactId>slf4j-log4j12</artifactId>
71                                 </exclusion>
72                         </exclusions> 
73                 </dependency>  -->
74                 
75                 <dependency>
76                                 <groupId>org.apache.httpcomponents</groupId>
77                                 <artifactId>httpclient</artifactId>
78                                 <scope>compile</scope>
79                                 <exclusions>
80                                 <exclusion>  
81                                         <groupId>org.apache.httpcomponents</groupId>
82                                         <artifactId>httpclient</artifactId>
83                                 </exclusion>
84                         </exclusions>
85                 </dependency>
86                 
87                 <dependency>
88                         <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
89                         <artifactId>sdc-distribution-client</artifactId>
90                          <version>1.2.2</version>
91                         <exclusions>
92                         <exclusion>  
93                                 <groupId>org.slf4j</groupId>
94                                 <artifactId>slf4j-log4j12</artifactId>
95                         </exclusion>
96           </exclusions>
97                 </dependency>
98
99
100                 <dependency>
101                         <groupId>org.openecomp.sdc.sdc-tosca</groupId>
102                         <artifactId>sdc-tosca</artifactId>
103                         <version>1.2.3</version>
104                 </dependency> 
105                 
106
107                 <dependency>
108                     <groupId>org.apache.httpcomponents</groupId>
109                     <artifactId>httpmime</artifactId>
110                     <version>4.5</version>
111                 </dependency>
112
113                 <dependency>
114                         <groupId>org.onap.so</groupId>
115                         <artifactId>common</artifactId>
116                         <version>${project.version}</version>
117                 </dependency>
118
119                 <dependency>
120                         <groupId>org.yaml</groupId>
121                         <artifactId>snakeyaml</artifactId>
122                         <version>1.15</version>
123                 </dependency>
124
125                 <dependency>
126                         <groupId>javax</groupId>
127                         <artifactId>javaee-web-api</artifactId>
128                         <version>6.0</version>
129                         <scope>provided</scope>
130                 </dependency>
131                 <dependency>
132                         <groupId>org.onap.so</groupId>
133                         <artifactId>status-control</artifactId>
134                         <version>${project.version}</version>
135                 </dependency>
136                 <dependency>
137                         <groupId>commons-io</groupId>
138                         <artifactId>commons-io</artifactId>
139                 </dependency>
140                 <dependency>
141                         <groupId>org.onap.so</groupId>
142                         <artifactId>mso-requests-db</artifactId>
143                         <version>${project.version}</version>
144                 </dependency>
145         </dependencies>
146
147 </project>