blob: b95e4a907eb1a3016693ace3a7e6cf90ae1cf357 [file] [log] [blame]
Michael Landob3d48982017-06-11 14:22:02 +03001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Michael Landoa5445102018-03-04 14:53:33 +02002 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Michael Landob3d48982017-06-11 14:22:02 +03003
Michael Landoa5445102018-03-04 14:53:33 +02004 <modelVersion>4.0.0</modelVersion>
Michael Landob3d48982017-06-11 14:22:02 +03005
Michael Landoa5445102018-03-04 14:53:33 +02006 <artifactId>test-apis-ci</artifactId>
Michael Landob3d48982017-06-11 14:22:02 +03007
Michael Landoa5445102018-03-04 14:53:33 +02008 <parent>
9 <groupId>org.openecomp.sdc</groupId>
10 <artifactId>sdc-main</artifactId>
11 <version>1.2.0-SNAPSHOT</version>
12 </parent>
Gitelman, Tal (tg851x)e482ae42018-03-11 19:37:06 +020013
14 <properties>
15 <sonar.skip>true</sonar.skip>
16 </properties>
17
Michael Landoa5445102018-03-04 14:53:33 +020018 <dependencies>
19 <dependency>
20 <groupId>com.google.guava</groupId>
21 <artifactId>guava</artifactId>
22 <version>${guava.version}</version>
23 <scope>compile</scope>
24 </dependency>
Michael Lando660b57d2017-10-11 09:45:53 +030025
Michael Landoa5445102018-03-04 14:53:33 +020026 <dependency>
27 <groupId>junit</groupId>
28 <artifactId>junit</artifactId>
29 <version>${junit.version}</version>
30 <scope>compile</scope>
31 </dependency>
32 <!--<dependency>
33 <groupId>org.hamcrest</groupId>
34 <artifactId>hamcrest-core</artifactId>
35 <version>1.3</version>
36 <scope>test</scope>
37 </dependency>
38 <dependency>
39 <groupId>org.hamcrest</groupId>
40 <artifactId>hamcrest-library</artifactId>
41 <version>1.3</version>
42 <scope>test</scope>
43 </dependency>-->
44 <dependency>
45 <groupId>org.hamcrest</groupId>
46 <artifactId>hamcrest-all</artifactId>
47 <version>1.3</version>
48 <scope>test</scope>
49 </dependency>
50 <dependency>
51 <groupId>org.testng</groupId>
52 <artifactId>testng</artifactId>
53 <version>${testng.version}</version>
54 <scope>compile</scope>
55 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +030056
Michael Landoa5445102018-03-04 14:53:33 +020057 <dependency>
58 <groupId>com.aventstack</groupId>
59 <artifactId>extentreports</artifactId>
60 <version>3.0.6</version>
61 <scope>compile</scope>
62 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +030063
Michael Landoa5445102018-03-04 14:53:33 +020064 <dependency>
65 <groupId>org.mockito</groupId>
66 <artifactId>mockito-core</artifactId>
67 <scope>test</scope>
68 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +030069
Michael Landoa5445102018-03-04 14:53:33 +020070 <dependency>
71 <groupId>com.typesafe</groupId>
72 <artifactId>config</artifactId>
73 <version>1.0.2</version>
74 <scope>compile</scope>
75 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +030076
Michael Landoa5445102018-03-04 14:53:33 +020077 <dependency>
78 <groupId>log4j</groupId>
79 <artifactId>log4j</artifactId>
80 <version>1.2.17</version>
81 <scope>compile</scope>
82 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +030083
Michael Landoa5445102018-03-04 14:53:33 +020084 <dependency>
85 <groupId>com.jcraft.jsch</groupId>
86 <artifactId>com.springsource.com.jcraft.jsch</artifactId>
87 <version>0.1.41</version>
88 <scope>compile</scope>
89 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +030090
Michael Landoa5445102018-03-04 14:53:33 +020091 <!-- <dependency>
92 <groupId>org.openecomp.sdc</groupId>
93 <artifactId>dmaap-publisher</artifactId>
94 <version>1.0.0</version>
95 <scope>provided</scope>
96 </dependency>-->
Michael Landob3d48982017-06-11 14:22:02 +030097
Michael Landoa5445102018-03-04 14:53:33 +020098 <dependency>
99 <groupId>org.openecomp.sdc</groupId>
100 <artifactId>common-app-api</artifactId>
101 <version>${project.version}</version>
102 <scope>compile</scope>
103 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300104
Michael Landoa5445102018-03-04 14:53:33 +0200105 <dependency>
106 <groupId>org.openecomp.sdc.be</groupId>
107 <artifactId>common-be</artifactId>
108 <version>${project.version}</version>
109 <scope>compile</scope>
110 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300111
Michael Landoa5445102018-03-04 14:53:33 +0200112 <!-- CHECK CATLOG MODEL -->
113 <dependency>
114 <groupId>org.openecomp.sdc.be</groupId>
115 <artifactId>catalog-model</artifactId>
116 <version>${project.version}</version>
117 <scope>compile</scope>
118 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300119
Michael Landoa5445102018-03-04 14:53:33 +0200120 <!-- catalog dao -->
121 <dependency>
122 <groupId>org.openecomp.sdc.be</groupId>
123 <artifactId>catalog-dao</artifactId>
124 <version>${project.version}</version>
125 <scope>compile</scope>
126 </dependency>
127 <!-- functional java -->
128 <dependency>
129 <groupId>org.functionaljava</groupId>
130 <artifactId>functionaljava</artifactId>
131 <version>${functionaljava.version}</version>
132 <scope>compile</scope>
133 </dependency>
134 <!-- CASSANDRA -->
135 <dependency>
136 <groupId>com.datastax.cassandra</groupId>
137 <artifactId>cassandra-driver-core</artifactId>
138 <version>${cassandra.driver.version}</version>
139 <scope>compile</scope>
140 </dependency>
141 <!-- CASSANDRA END -->
Michael Landob3d48982017-06-11 14:22:02 +0300142
Michael Landoa5445102018-03-04 14:53:33 +0200143 <!-- slf4j + logback -->
144 <dependency>
145 <groupId>org.slf4j</groupId>
146 <artifactId>slf4j-api</artifactId>
Michael Landob3d48982017-06-11 14:22:02 +0300147 <version>${slf4j-api.version}</version>
Michael Landoa5445102018-03-04 14:53:33 +0200148 <scope>compile</scope>
149 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300150
Michael Landoa5445102018-03-04 14:53:33 +0200151 <dependency>
152 <groupId>ch.qos.logback</groupId>
153 <artifactId>logback-classic</artifactId>
Michael Landob3d48982017-06-11 14:22:02 +0300154 <version>${logback.version}</version>
Michael Landoa5445102018-03-04 14:53:33 +0200155 <scope>compile</scope>
156 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300157
Michael Landoa5445102018-03-04 14:53:33 +0200158 <dependency>
159 <groupId>ch.qos.logback</groupId>
160 <artifactId>logback-core</artifactId>
Michael Landob3d48982017-06-11 14:22:02 +0300161 <version>${logback.version}</version>
Michael Landoa5445102018-03-04 14:53:33 +0200162 <scope>compile</scope>
163 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300164
Michael Landoa5445102018-03-04 14:53:33 +0200165 <dependency>
166 <groupId>com.googlecode.json-simple</groupId>
167 <artifactId>json-simple</artifactId>
168 <version>${json-simple.version}</version>
169 <scope>compile</scope>
170 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300171
Michael Landoa5445102018-03-04 14:53:33 +0200172 <!-- File changes listener -->
173 <dependency>
174 <groupId>org.apache.commons</groupId>
175 <artifactId>commons-jci-core</artifactId>
176 <version>${commons-jci-core.version}</version>
177 <scope>compile</scope>
178 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300179
Michael Landoa5445102018-03-04 14:53:33 +0200180 <dependency>
181 <groupId>commons-codec</groupId>
182 <artifactId>commons-codec</artifactId>
Michael Landob3d48982017-06-11 14:22:02 +0300183 <version>${commons-codec}</version>
Michael Landoa5445102018-03-04 14:53:33 +0200184 <scope>compile</scope>
185 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300186
Michael Landoa5445102018-03-04 14:53:33 +0200187 <!-- Gson -->
188 <dependency>
189 <groupId>com.google.code.gson</groupId>
190 <artifactId>gson</artifactId>
191 <version>${gson.version}</version>
192 <scope>compile</scope>
193 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300194
Michael Landoa5445102018-03-04 14:53:33 +0200195 <!-- Snake Yaml -->
196 <dependency>
197 <groupId>org.yaml</groupId>
198 <artifactId>snakeyaml</artifactId>
199 <version>${snakeyaml.version}</version>
200 <scope>compile</scope>
201 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300202
Michael Landoa5445102018-03-04 14:53:33 +0200203 <!-- http client -->
204 <dependency>
205 <groupId>org.apache.httpcomponents</groupId>
206 <artifactId>httpclient</artifactId>
Michael Landob3d48982017-06-11 14:22:02 +0300207 <version>${httpclient.version}</version>
Michael Landoa5445102018-03-04 14:53:33 +0200208 <scope>compile</scope>
209 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300210
Michael Landoa5445102018-03-04 14:53:33 +0200211 <dependency>
212 <groupId>org.apache.httpcomponents</groupId>
213 <artifactId>httpmime</artifactId>
Michael Landob3d48982017-06-11 14:22:02 +0300214 <version>${httpclient.version}</version>
Michael Landoa5445102018-03-04 14:53:33 +0200215 <scope>compile</scope>
216 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300217
Michael Landoa5445102018-03-04 14:53:33 +0200218 <dependency>
219 <groupId>commons-io</groupId>
220 <artifactId>commons-io</artifactId>
221 <version>2.5</version>
222 <scope>compile</scope>
223 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300224
Michael Landoa5445102018-03-04 14:53:33 +0200225 <dependency>
226 <groupId>commons-logging</groupId>
227 <artifactId>commons-logging</artifactId>
Michael Landob3d48982017-06-11 14:22:02 +0300228 <version>${commons-logging}</version>
Michael Landoa5445102018-03-04 14:53:33 +0200229 <scope>compile</scope>
230 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300231
Michael Landoa5445102018-03-04 14:53:33 +0200232 <!-- http core -->
233 <dependency>
234 <groupId>org.apache.httpcomponents</groupId>
235 <artifactId>httpcore</artifactId>
236 <version>${httpcore.version}</version>
237 <scope>compile</scope>
238 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300239
Michael Landoa5445102018-03-04 14:53:33 +0200240 <!-- TITAN -->
241 <dependency>
242 <groupId>com.thinkaurelius.titan</groupId>
243 <artifactId>titan-core</artifactId>
244 <version>${titan.version}</version>
245 <scope>compile</scope>
246 <exclusions>
247 <exclusion>
248 <artifactId>slf4j-log4j12</artifactId>
249 <groupId>org.slf4j</groupId>
250 </exclusion>
251 </exclusions>
252 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300253
Michael Landoa5445102018-03-04 14:53:33 +0200254 <dependency>
255 <groupId>com.thinkaurelius.titan</groupId>
256 <artifactId>titan-cassandra</artifactId>
257 <version>${titan.version}</version>
258 <scope>compile</scope>
259 <exclusions>
260 <exclusion>
261 <artifactId>slf4j-log4j12</artifactId>
262 <groupId>org.slf4j</groupId>
263 </exclusion>
264 </exclusions>
265 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300266
Michael Landoa5445102018-03-04 14:53:33 +0200267 <dependency>
268 <groupId>org.codehaus.jackson</groupId>
269 <artifactId>jackson-mapper-asl</artifactId>
270 <version>1.9.2</version>
271 <scope>compile</scope>
272 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300273
Michael Landoa5445102018-03-04 14:53:33 +0200274 <dependency>
275 <groupId>com.fasterxml.jackson.core</groupId>
276 <artifactId>jackson-databind</artifactId>
Gitelman, Tal (tg851x)483c3d92018-03-12 18:41:15 +0200277 <version>${jackson.version}</version>
Michael Landoa5445102018-03-04 14:53:33 +0200278 <scope>compile</scope>
279 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300280
Michael Landoa5445102018-03-04 14:53:33 +0200281 <dependency>
282 <groupId>com.fasterxml.jackson.core</groupId>
283 <artifactId>jackson-core</artifactId>
Gitelman, Tal (tg851x)483c3d92018-03-12 18:41:15 +0200284 <version>${jackson.version}</version>
Michael Landoa5445102018-03-04 14:53:33 +0200285 <scope>compile</scope>
286 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300287
Michael Landoa5445102018-03-04 14:53:33 +0200288 <dependency>
289 <groupId>org.openecomp.ecompsdkos</groupId>
290 <artifactId>epsdk-fw</artifactId>
291 <version>${ecomp.version}</version>
292 <scope>compile</scope>
293 <exclusions>
294 <exclusion>
295 <artifactId>slf4j-log4j12</artifactId>
296 <groupId>org.slf4j</groupId>
297 </exclusion>
298 </exclusions>
299 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300300
Michael Landoa5445102018-03-04 14:53:33 +0200301 <dependency>
302 <groupId>org.json</groupId>
303 <artifactId>json</artifactId>
304 <version>20131018</version>
305 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300306
Michael Landoa5445102018-03-04 14:53:33 +0200307 <dependency>
308 <groupId>org.openecomp.sdc.sdc-tosca</groupId>
309 <artifactId>sdc-tosca</artifactId>
310 <version>1.2.1-SNAPSHOT</version>
311 <scope>compile</scope>
312 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300313
Michael Landoa5445102018-03-04 14:53:33 +0200314 <dependency>
315 <groupId>info.cukes</groupId>
316 <artifactId>cucumber-junit</artifactId>
317 <version>1.2.4</version>
318 <scope>test</scope>
319 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300320
Michael Landoa5445102018-03-04 14:53:33 +0200321 <dependency>
322 <groupId>info.cukes</groupId>
323 <artifactId>cucumber-core</artifactId>
324 <version>1.2.4</version>
325 <scope>test</scope>
326 </dependency>
327
328 <dependency>
329 <groupId>info.cukes</groupId>
330 <artifactId>gherkin</artifactId>
331 <version>2.12.2</version>
332 </dependency>
333 <dependency>
334 <groupId>info.cukes</groupId>
335 <artifactId>cucumber-java</artifactId>
336 <version>1.2.5</version>
337 <scope>test</scope>
338 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300339
Michael Landoa5445102018-03-04 14:53:33 +0200340 <dependency>
341 <groupId>info.cukes</groupId>
342 <artifactId>cucumber-jvm-deps</artifactId>
343 <version>1.0.5</version>
344 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300345
Michael Landoa5445102018-03-04 14:53:33 +0200346 <dependency>
347 <groupId>org.mock-server</groupId>
348 <artifactId>mockserver-netty</artifactId>
349 <version>3.10.4</version>
350 <scope>test</scope>
351 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300352
Michael Landoa5445102018-03-04 14:53:33 +0200353 <dependency>
354 <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
355 <artifactId>sdc-distribution-client</artifactId>
356 <version>1.2.2 </version>
357 <scope>test</scope>
358 </dependency>
359
360 <!-- With TestNG -->
361 <dependency>
362 <groupId>info.cukes</groupId>
363 <artifactId>cucumber-testng</artifactId>
364 <version>1.2.5</version>
365 </dependency>
366
367 <!-- spring -->
368 <dependency>
369 <groupId>org.springframework</groupId>
370 <artifactId>spring-context</artifactId>
371 <version>${spring.version}</version>
372 <scope>compile</scope>
373 </dependency>
374
375 <!-- CASSANDRA -->
376 <dependency>
377 <groupId>com.datastax.cassandra</groupId>
378 <artifactId>cassandra-driver-mapping</artifactId>
379 <version>${cassandra.driver.version}</version>
380 <scope>compile</scope>
381 </dependency>
382
383 <!-- CASSANDRA END -->
384 </dependencies>
385
386 <build>
387 <plugins>
388
389 <!-- ============================================= -->
390 <!-- Get the next build number -->
391 <!-- ============================================= -->
392 <!--<plugin> -->
393 <!--<groupId>org.codehaus.mojo</groupId> -->
394 <!--<artifactId>properties-maven-plugin</artifactId> -->
395 <!--<version>1.0-alpha-1</version> -->
396 <!--<inherited>false</inherited> -->
397
398 <!--<executions> -->
399 <!--<execution> -->
400 <!--<id>tests</id> -->
401 <!--<phase>initialize</phase> -->
402 <!--<goals> -->
403 <!--<goal>read-project-properties</goal> -->
404 <!--</goals> -->
405
406 <!--<configuration> -->
407 <!--<files> -->
408 <!--<file>../target/FullReleaseVersion.properties</file> -->
409 <!--</files> -->
410 <!--</configuration> -->
411 <!--</execution> -->
412 <!--</executions> -->
413 <!--</plugin> -->
414
415 <plugin>
416 <groupId>org.apache.maven.plugins</groupId>
417 <artifactId>maven-deploy-plugin</artifactId>
418 <version>2.7</version>
419 <configuration>
420 <skip>true</skip>
421 </configuration>
422 </plugin>
423
424 <!-- ============================================= -->
425 <!-- Create the JAR file with its dependencies -->
426 <!-- ============================================= -->
427 <plugin>
428 <groupId>org.apache.maven.plugins</groupId>
429 <artifactId>maven-assembly-plugin</artifactId>
430 <executions>
431 <execution>
432 <id>create.jar.with.dependencies</id>
433 <phase>package</phase>
434 <goals>
435 <goal>single</goal>
436 </goals>
437 <configuration>
438 <archive>
439 <manifest>
440 <mainClass>org.openecomp.sdc.ci.tests.run.StartTest</mainClass>
441 </manifest>
442 </archive>
443 <descriptorRefs>
444 <descriptorRef>jar-with-dependencies</descriptorRef>
445 </descriptorRefs>
446 </configuration>
447 </execution>
448 </executions>
449 </plugin>
450 </plugins>
451 </build>
Michael Landob3d48982017-06-11 14:22:02 +0300452
Michael Landob3d48982017-06-11 14:22:02 +0300453
Michael Landob3d48982017-06-11 14:22:02 +0300454</project>