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