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