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