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