blob: ce346ae901570c2066165c0fb5f234fcda97f422 [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001<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
4 <modelVersion>4.0.0</modelVersion>
5
6 <artifactId>asdc-tests</artifactId>
7
8 <parent>
9 <groupId>org.openecomp.sdc</groupId>
10 <artifactId>sdc-main</artifactId>
11 <version>1.0.0-SNAPSHOT</version>
12 </parent>
13
14
15 <dependencies>
16 <dependency>
17 <groupId>com.google.guava</groupId>
18 <artifactId>guava</artifactId>
19 <scope>compile</scope>
20 </dependency>
21
22 <dependency>
23 <groupId>junit</groupId>
24 <artifactId>junit</artifactId>
25 <version>4.12</version>
26 <scope>compile</scope>
27 </dependency>
28
29 <dependency>
30 <groupId>org.testng</groupId>
31 <artifactId>testng</artifactId>
32 <version>6.9.10</version>
33 <scope>compile</scope>
34 </dependency>
35
36 <dependency>
37 <groupId>com.relevantcodes</groupId>
38 <artifactId>extentreports</artifactId>
39 <version>2.41.0</version>
40 <scope>compile</scope>
41 </dependency>
42
43 <dependency>
44 <groupId>org.mockito</groupId>
45 <artifactId>mockito-all</artifactId>
46 <version>1.10.19</version>
47 <scope>compile</scope>
48 </dependency>
49
50 <dependency>
51 <groupId>com.typesafe</groupId>
52 <artifactId>config</artifactId>
53 <version>1.0.2</version>
54 <scope>compile</scope>
55 </dependency>
56
57 <dependency>
58 <groupId>log4j</groupId>
59 <artifactId>log4j</artifactId>
60 <version>1.2.17</version>
61 <scope>compile</scope>
62 </dependency>
63
64 <dependency>
65 <groupId>com.jcraft.jsch</groupId>
66 <artifactId>com.springsource.com.jcraft.jsch</artifactId>
67 <version>0.1.41</version>
68 <scope>compile</scope>
69 </dependency>
70
71 <dependency>
72 <groupId>org.openecomp.sdc</groupId>
73 <artifactId>common-app-api</artifactId>
74 <version>${common-app-api.version}</version>
75 <scope>compile</scope>
76 </dependency>
77
78 <dependency>
79 <groupId>org.openecomp.sdc.be</groupId>
80 <artifactId>common-be</artifactId>
81 <version>${common-be.version}</version>
82 <scope>compile</scope>
83 </dependency>
84
85 <!-- CHECK CATLOG MODEL -->
86 <dependency>
87 <groupId>org.openecomp.sdc.be</groupId>
88 <artifactId>catalog-model</artifactId>
89 <version>${catalog-model.version}</version>
90 <scope>compile</scope>
91 </dependency>
92
93 <!-- catalog dao -->
94 <dependency>
95 <groupId>org.openecomp.sdc.be</groupId>
96 <artifactId>catalog-dao</artifactId>
97 <version>${catalog-dao.version}</version>
98 <scope>compile</scope>
99 </dependency>
100
101 <dependency>
102 <groupId>org.functionaljava</groupId>
103 <artifactId>functionaljava</artifactId>
104 <scope>compile</scope>
105 </dependency>
106 <!-- CASSANDRA -->
107 <dependency>
108 <groupId>com.datastax.cassandra</groupId>
109 <artifactId>cassandra-driver-core</artifactId>
110 <version>${cassandra.driver.version}</version>
111 <scope>compile</scope>
112 </dependency>
113 <!-- CASSANDRA END -->
114
115
116 <!-- slf4j + logback -->
117 <dependency>
118 <groupId>org.slf4j</groupId>
119 <artifactId>slf4j-api</artifactId>
120 <scope>compile</scope>
121 </dependency>
122
123 <dependency>
124 <groupId>ch.qos.logback</groupId>
125 <artifactId>logback-classic</artifactId>
126 <scope>compile</scope>
127 </dependency>
128
129 <dependency>
130 <groupId>ch.qos.logback</groupId>
131 <artifactId>logback-core</artifactId>
132 <scope>compile</scope>
133 </dependency>
134
135 <dependency>
136 <groupId>com.googlecode.json-simple</groupId>
137 <artifactId>json-simple</artifactId>
138 <scope>compile</scope>
139 </dependency>
140
141 <!-- File changes listener -->
142
143 <dependency>
144 <groupId>org.apache.commons</groupId>
145 <artifactId>commons-jci-core</artifactId>
146 <scope>compile</scope>
147 </dependency>
148
149 <dependency>
150 <groupId>commons-codec</groupId>
151 <artifactId>commons-codec</artifactId>
152 <scope>compile</scope>
153 </dependency>
154
155 <!-- Gson -->
156
157 <dependency>
158 <groupId>com.google.code.gson</groupId>
159 <artifactId>gson</artifactId>
160 <scope>compile</scope>
161 </dependency>
162
163 <!-- Snake Yaml -->
164 <dependency>
165 <groupId>org.yaml</groupId>
166 <artifactId>snakeyaml</artifactId>
167 <scope>compile</scope>
168 </dependency>
169
170 <!-- http client -->
171 <dependency>
172 <groupId>org.apache.httpcomponents</groupId>
173 <artifactId>httpclient</artifactId>
174 <scope>compile</scope>
175 </dependency>
176
177 <dependency>
178 <groupId>org.apache.httpcomponents</groupId>
179 <artifactId>httpmime</artifactId>
180 <scope>compile</scope>
181 </dependency>
182
183 <dependency>
184 <groupId>commons-io</groupId>
185 <artifactId>commons-io</artifactId>
186 <version>2.5</version>
187 <scope>compile</scope>
188 </dependency>
189
190 <dependency>
191 <groupId>commons-logging</groupId>
192 <artifactId>commons-logging</artifactId>
193 <scope>compile</scope>
194 </dependency>
195
196 <!-- http core -->
197 <dependency>
198 <groupId>org.apache.httpcomponents</groupId>
199 <artifactId>httpcore</artifactId>
200 <scope>compile</scope>
201 </dependency>
202
203 <!-- TITAN -->
204 <dependency>
205 <groupId>com.thinkaurelius.titan</groupId>
206 <artifactId>titan-core</artifactId>
207 <version>${titan.version}</version>
208 <scope>compile</scope>
209 <exclusions>
210 <exclusion>
211 <artifactId>slf4j-log4j12</artifactId>
212 <groupId>org.slf4j</groupId>
213 </exclusion>
214 </exclusions>
215 </dependency>
216
217 <dependency>
218 <groupId>com.thinkaurelius.titan</groupId>
219 <artifactId>titan-cassandra</artifactId>
220 <version>${titan.version}</version>
221 <scope>compile</scope>
222 <exclusions>
223 <exclusion>
224 <artifactId>slf4j-log4j12</artifactId>
225 <groupId>org.slf4j</groupId>
226 </exclusion>
227 </exclusions>
228 </dependency>
229
230 <dependency>
231 <groupId>org.codehaus.jackson</groupId>
232 <artifactId>jackson-mapper-asl</artifactId>
233 <version>1.9.2</version>
234 <scope>compile</scope>
235 </dependency>
236
237 <dependency>
238 <groupId>com.fasterxml.jackson.core</groupId>
239 <artifactId>jackson-databind</artifactId>
240 <version>2.3.1</version>
241 <scope>compile</scope>
242 </dependency>
243
244 <dependency>
245 <groupId>com.fasterxml.jackson.core</groupId>
246 <artifactId>jackson-core</artifactId>
247 <version>2.3.1</version>
248 <scope>compile</scope>
249 </dependency>
250
251 <dependency>
252 <groupId>org.openecomp.sdc</groupId>
253 <artifactId>sdc-distribution-client</artifactId>
254 <version>1.0.0-SNAPSHOT</version>
255 <scope>compile</scope>
256 </dependency>
257
258 <dependency>
259 <groupId>org.openecomp.ecompsdkos</groupId>
260 <artifactId>ecompFW</artifactId>
261 <version>${ecomp.version}</version>
262 <scope>compile</scope>
263 <exclusions>
264 <exclusion>
265 <artifactId>slf4j-log4j12</artifactId>
266 <groupId>org.slf4j</groupId>
267 </exclusion>
268 </exclusions>
269 </dependency>
270
271 <dependency>
272 <groupId>org.json</groupId>
273 <artifactId>json</artifactId>
274 <version>20090211</version>
275 </dependency>
276 </dependencies>
277
278
279 <build>
280 <plugins>
281
282 <plugin>
283 <groupId>org.apache.maven.plugins</groupId>
284 <artifactId>maven-deploy-plugin</artifactId>
285 <version>2.7</version>
286 <configuration>
287 <skip>true</skip>
288 </configuration>
289 </plugin>
290
291 <!-- ============================================= -->
292 <!-- Create the JAR file with its dependencies -->
293 <!-- ============================================= -->
294 <plugin>
295 <groupId>org.apache.maven.plugins</groupId>
296 <artifactId>maven-assembly-plugin</artifactId>
297 <version>2.5.5</version>
298 <executions>
299 <execution>
300 <id>create.jar.with.dependencies</id>
301 <phase>package</phase>
302 <goals>
303 <goal>single</goal>
304 </goals>
305 <configuration>
306 <archive>
307 <manifest>
308 <mainClass>org.openecomp.sdc.ci.tests.run.StartTest</mainClass>
309 </manifest>
310 </archive>
311 <descriptorRefs>
312 <descriptorRef>jar-with-dependencies</descriptorRef>
313 </descriptorRefs>
314 </configuration>
315 </execution>
316 </executions>
317 </plugin>
318 <plugin>
319 <groupId>org.apache.maven.plugins</groupId>
320 <artifactId>maven-assembly-plugin</artifactId>
321 <version>2.6</version>
322 <executions>
323 <execution>
324 <configuration>
325 <finalName>${project.artifactId}</finalName>
326 <appendAssemblyId>false</appendAssemblyId>
327 <descriptor>${project.basedir}/tarball.xml</descriptor>
328 </configuration>
329 <id>assemble-file</id>
330 <phase>package</phase>
331 <goals>
332 <goal>single</goal>
333 </goals>
334 </execution>
335 </executions>
336 </plugin>
337 <plugin>
338 <groupId>org.apache.maven.plugins</groupId>
339 <artifactId>maven-resources-plugin</artifactId>
340 <version>3.0.2</version>
341
342 <executions>
343 <execution>
344 <id>copy-asdc-tests</id>
345 <phase>install</phase>
346 <goals>
347 <goal>copy-resources</goal>
348 </goals>
349 <configuration>
350 <outputDirectory>${project.parent.basedir}/sdc-os-chef/sdc-sanity/chef-repo/cookbooks/sdc-sanity/files/default</outputDirectory>
351 <resources>
352 <resource>
353 <directory>./target</directory>
354 <includes>
355 <include>asdc-tests.tar</include>
356 </includes>
357 </resource>
358 </resources>
359 </configuration>
360 </execution>
361 </executions>
362 </plugin>
363
364 </plugins>
365 </build>
366</project>
367