AT&T 1712 and 1802 release code
[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.mockito</groupId>
33                         <artifactId>mockito-all</artifactId>
34                         <version>1.10.19</version>
35                         <scope>test</scope>
36                 </dependency>
37                 <dependency>
38                         <groupId>org.jmockit</groupId>
39                         <artifactId>jmockit</artifactId>
40                         <version>1.8</version>
41                         <scope>test</scope>
42                 </dependency>  
43                 <dependency>
44                         <groupId>org.onap.so</groupId>
45                         <artifactId>mso-catalog-db</artifactId>
46                         <version>${project.version}</version>
47                 </dependency>
48
49                 <dependency>
50                         <groupId>org.jboss.spec.javax.ejb</groupId>
51                         <artifactId>jboss-ejb-api_3.2_spec</artifactId>
52                         <version>1.0.0.Final</version>
53                         <scope>provided</scope>
54                 </dependency>
55                 <dependency>
56                         <groupId>org.jboss.ejb3</groupId>
57                         <artifactId>jboss-ejb3-ext-api</artifactId>
58                         <version>2.2.0.Final</version>
59                         <scope>provided</scope>
60                 </dependency>
61
62                 <dependency>
63                                 <groupId>javax.servlet</groupId>
64                                 <artifactId>javax.servlet-api</artifactId>
65                                 <version>3.1.0</version>
66                                 <scope>test</scope>
67                 </dependency>
68                 
69         <!--    <dependency>
70                                 <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
71                                 <artifactId>sdc-distribution-client</artifactId>
72                                 <version>1.1.16</version>
73                                 <exclusions>
74                                 <exclusion>  
75                                         <groupId>org.slf4j</groupId>
76                                         <artifactId>slf4j-log4j12</artifactId>
77                                 </exclusion>
78                         </exclusions> 
79                 </dependency>  -->
80                 
81                 <dependency>
82                                 <groupId>org.apache.httpcomponents</groupId>
83                                 <artifactId>httpclient</artifactId>
84                                 <version>4.4.1</version>
85                                 <scope>compile</scope>
86                                 <exclusions>
87                                 <exclusion>  
88                                         <groupId>org.apache.httpcomponents</groupId>
89                                         <artifactId>httpclient</artifactId>
90                                 </exclusion>
91                         </exclusions>
92                 </dependency>
93                 
94                 <dependency>
95                         <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
96                         <artifactId>sdc-distribution-client</artifactId>
97                          <version>1.2.2</version>
98                         <exclusions>
99                         <exclusion>  
100                                 <groupId>org.slf4j</groupId>
101                                 <artifactId>slf4j-log4j12</artifactId>
102                         </exclusion>
103           </exclusions>
104                 </dependency>
105
106
107                 <dependency>
108                         <groupId>org.openecomp.sdc.sdc-tosca</groupId>
109                         <artifactId>sdc-tosca</artifactId>
110                         <version>1.2.3</version>
111                 </dependency> 
112                 
113
114                 <dependency>
115                     <groupId>org.apache.httpcomponents</groupId>
116                     <artifactId>httpmime</artifactId>
117                     <version>4.5</version>
118                 </dependency>
119
120                 <dependency>
121                         <groupId>org.onap.so</groupId>
122                         <artifactId>common</artifactId>
123                         <version>${project.version}</version>
124                 </dependency>
125
126                 <dependency>
127                         <groupId>org.yaml</groupId>
128                         <artifactId>snakeyaml</artifactId>
129                         <version>1.15</version>
130                 </dependency>
131
132                 <dependency>
133                         <groupId>javax</groupId>
134                         <artifactId>javaee-web-api</artifactId>
135                         <version>6.0</version>
136                         <scope>provided</scope>
137                 </dependency>
138                 <dependency>
139                         <groupId>org.onap.so</groupId>
140                         <artifactId>status-control</artifactId>
141                         <version>${project.version}</version>
142                 </dependency>
143                 <dependency>
144                         <groupId>commons-io</groupId>
145                         <artifactId>commons-io</artifactId>
146                 </dependency>
147                 <dependency>
148                         <groupId>org.onap.so</groupId>
149                         <artifactId>mso-requests-db</artifactId>
150                         <version>${project.version}</version>
151                 </dependency>
152         </dependencies>
153
154 </project>