blob: 9cc5898fccf07ab1323ad9c2065086ddad0fbfbd [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>
Michael Landoed64b5e2017-06-09 03:19:04 +03007
Michael Lando451a3402017-02-19 10:28:42 +02008 <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 Lando451a3402017-02-19 10:28:42 +020012 </parent>
Michael Lando660b57d2017-10-11 09:45:53 +030013
14 <properties>
15 <sonar.skip>true</sonar.skip>
16 </properties>
Michael Landoed64b5e2017-06-09 03:19:04 +030017
Michael Lando451a3402017-02-19 10:28:42 +020018 <dependencies>
Michael Landoc0ac0152017-02-27 23:48:43 +020019
Michael Landoc34b77c2017-02-28 19:03:11 +020020 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +020021 <groupId>com.google.guava</groupId>
22 <artifactId>guava</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +020023 <version>${guava.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020024 <scope>compile</scope>
25 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030026
Michael Lando451a3402017-02-19 10:28:42 +020027 <dependency>
28 <groupId>junit</groupId>
29 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030030 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020031 <scope>compile</scope>
32 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030033
Michael Lando451a3402017-02-19 10:28:42 +020034 <dependency>
35 <groupId>org.testng</groupId>
36 <artifactId>testng</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030037 <version>${testng.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020038 <scope>compile</scope>
39 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030040
Michael Lando451a3402017-02-19 10:28:42 +020041 <dependency>
42 <groupId>com.relevantcodes</groupId>
43 <artifactId>extentreports</artifactId>
44 <version>2.41.0</version>
45 <scope>compile</scope>
46 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030047
Michael Lando451a3402017-02-19 10:28:42 +020048 <dependency>
49 <groupId>org.mockito</groupId>
Tal Gitelman51d50f02017-12-10 18:55:03 +020050 <artifactId>mockito-core</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +020051 <scope>compile</scope>
52 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030053
Michael Lando451a3402017-02-19 10:28:42 +020054 <dependency>
55 <groupId>com.typesafe</groupId>
56 <artifactId>config</artifactId>
57 <version>1.0.2</version>
58 <scope>compile</scope>
59 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030060
Michael Lando451a3402017-02-19 10:28:42 +020061 <dependency>
62 <groupId>log4j</groupId>
63 <artifactId>log4j</artifactId>
64 <version>1.2.17</version>
65 <scope>compile</scope>
66 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030067
Michael Lando451a3402017-02-19 10:28:42 +020068 <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>
Michael Landoed64b5e2017-06-09 03:19:04 +030074
Michael Lando451a3402017-02-19 10:28:42 +020075 <dependency>
76 <groupId>org.openecomp.sdc</groupId>
77 <artifactId>common-app-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030078 <version>${project.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020079 <scope>compile</scope>
80 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030081
Michael Lando451a3402017-02-19 10:28:42 +020082 <dependency>
83 <groupId>org.openecomp.sdc.be</groupId>
84 <artifactId>common-be</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030085 <version>${project.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020086 <scope>compile</scope>
87 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030088
Michael Lando451a3402017-02-19 10:28:42 +020089 <!-- CHECK CATLOG MODEL -->
90 <dependency>
91 <groupId>org.openecomp.sdc.be</groupId>
92 <artifactId>catalog-model</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030093 <version>${project.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020094 <scope>compile</scope>
95 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030096
Michael Lando451a3402017-02-19 10:28:42 +020097 <!-- catalog dao -->
98 <dependency>
99 <groupId>org.openecomp.sdc.be</groupId>
100 <artifactId>catalog-dao</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300101 <version>${project.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200102 <scope>compile</scope>
103 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300104 <!-- functional java -->
Michael Lando451a3402017-02-19 10:28:42 +0200105 <dependency>
106 <groupId>org.functionaljava</groupId>
107 <artifactId>functionaljava</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300108 <version>${functionaljava.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200109 <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 -->
Michael Landoed64b5e2017-06-09 03:19:04 +0300119
Michael Lando451a3402017-02-19 10:28:42 +0200120 <!-- slf4j + logback -->
121 <dependency>
122 <groupId>org.slf4j</groupId>
123 <artifactId>slf4j-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300124 <version>${slf4j-api.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200125 <scope>compile</scope>
126 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300127
Michael Lando451a3402017-02-19 10:28:42 +0200128 <dependency>
129 <groupId>ch.qos.logback</groupId>
130 <artifactId>logback-classic</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300131 <version>${logback.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200132 <scope>compile</scope>
133 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300134
Michael Lando451a3402017-02-19 10:28:42 +0200135 <dependency>
136 <groupId>ch.qos.logback</groupId>
137 <artifactId>logback-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300138 <version>${logback.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200139 <scope>compile</scope>
140 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300141
Michael Lando451a3402017-02-19 10:28:42 +0200142 <dependency>
143 <groupId>com.googlecode.json-simple</groupId>
144 <artifactId>json-simple</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300145 <version>${json-simple.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200146 <scope>compile</scope>
147 </dependency>
148
149 <!-- File changes listener -->
Michael Lando451a3402017-02-19 10:28:42 +0200150 <dependency>
151 <groupId>org.apache.commons</groupId>
152 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300153 <version>${commons-jci-core.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200154 <scope>compile</scope>
155 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300156
Michael Lando451a3402017-02-19 10:28:42 +0200157 <dependency>
158 <groupId>commons-codec</groupId>
159 <artifactId>commons-codec</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300160 <version>${commons-codec}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200161 <scope>compile</scope>
162 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200163
Michael Landoed64b5e2017-06-09 03:19:04 +0300164 <!-- Gson -->
Michael Lando451a3402017-02-19 10:28:42 +0200165 <dependency>
166 <groupId>com.google.code.gson</groupId>
167 <artifactId>gson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300168 <version>${gson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200169 <scope>compile</scope>
170 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300171
Michael Lando451a3402017-02-19 10:28:42 +0200172 <!-- Snake Yaml -->
173 <dependency>
174 <groupId>org.yaml</groupId>
175 <artifactId>snakeyaml</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300176 <version>${snakeyaml.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200177 <scope>compile</scope>
178 </dependency>
Michael Lando0de99c22017-02-28 10:54:57 +0200179
Michael Lando451a3402017-02-19 10:28:42 +0200180 <!-- http client -->
181 <dependency>
182 <groupId>org.apache.httpcomponents</groupId>
183 <artifactId>httpclient</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300184 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200185 <scope>compile</scope>
186 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300187
Michael Lando451a3402017-02-19 10:28:42 +0200188 <dependency>
189 <groupId>org.apache.httpcomponents</groupId>
190 <artifactId>httpmime</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300191 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200192 <scope>compile</scope>
Michael Landoed64b5e2017-06-09 03:19:04 +0300193 </dependency>
194
Michael Lando451a3402017-02-19 10:28:42 +0200195 <dependency>
196 <groupId>commons-io</groupId>
197 <artifactId>commons-io</artifactId>
198 <version>2.5</version>
199 <scope>compile</scope>
200 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300201
Michael Lando451a3402017-02-19 10:28:42 +0200202 <dependency>
203 <groupId>commons-logging</groupId>
204 <artifactId>commons-logging</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300205 <version>${commons-logging}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200206 <scope>compile</scope>
207 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300208
Michael Lando451a3402017-02-19 10:28:42 +0200209 <!-- http core -->
210 <dependency>
211 <groupId>org.apache.httpcomponents</groupId>
212 <artifactId>httpcore</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300213 <version>${httpcore.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200214 <scope>compile</scope>
215 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300216
Michael Lando451a3402017-02-19 10:28:42 +0200217 <!-- 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>
Michael Landoed64b5e2017-06-09 03:19:04 +0300230
Michael Lando451a3402017-02-19 10:28:42 +0200231 <dependency>
Idan Amit39987c82017-09-13 13:51:41 +0300232 <groupId>org.openecomp.sdc.sdc-titan-cassandra</groupId>
233 <artifactId>sdc-titan-cassandra</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +0200234 <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>
Michael Landoed64b5e2017-06-09 03:19:04 +0300243
Michael Lando451a3402017-02-19 10:28:42 +0200244 <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>
Michael Landoc34b77c2017-02-28 19:03:11 +0200254 <version>${jackson.version}</version>
Michael Landoed64b5e2017-06-09 03:19:04 +0300255 <!--<version>2.3.1</version>-->
Michael Lando451a3402017-02-19 10:28:42 +0200256 <scope>compile</scope>
257 </dependency>
258
259 <dependency>
260 <groupId>com.fasterxml.jackson.core</groupId>
261 <artifactId>jackson-core</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200262 <version>${jackson.version}</version>
Michael Landoed64b5e2017-06-09 03:19:04 +0300263 <!--<version>2.3.1</version>-->
Michael Lando451a3402017-02-19 10:28:42 +0200264 <scope>compile</scope>
265 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300266
Michael Lando451a3402017-02-19 10:28:42 +0200267 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300268 <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
Michael Lando451a3402017-02-19 10:28:42 +0200269 <artifactId>sdc-distribution-client</artifactId>
Yuli Shlosberg0566f582017-11-26 19:05:23 +0200270 <version>1.1.32</version>
Michael Lando451a3402017-02-19 10:28:42 +0200271 <scope>compile</scope>
272 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300273
Michael Lando451a3402017-02-19 10:28:42 +0200274 <dependency>
275 <groupId>org.openecomp.ecompsdkos</groupId>
Michael Landob3d48982017-06-11 14:22:02 +0300276 <artifactId>epsdk-fw</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300277 <version>${ecomp.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200278 <scope>compile</scope>
Michael Landoed64b5e2017-06-09 03:19:04 +0300279 <exclusions>
280 <exclusion>
281 <artifactId>slf4j-log4j12</artifactId>
282 <groupId>org.slf4j</groupId>
283 </exclusion>
284 </exclusions>
285 </dependency>
286
Michael Lando451a3402017-02-19 10:28:42 +0200287 <dependency>
288 <groupId>org.json</groupId>
289 <artifactId>json</artifactId>
290 <version>20090211</version>
291 </dependency>
292 </dependencies>
Michael Landoed64b5e2017-06-09 03:19:04 +0300293
Michael Lando451a3402017-02-19 10:28:42 +0200294 <build>
295 <plugins>
Michael Landoed64b5e2017-06-09 03:19:04 +0300296
Michael Lando451a3402017-02-19 10:28:42 +0200297 <plugin>
298 <groupId>org.apache.maven.plugins</groupId>
299 <artifactId>maven-deploy-plugin</artifactId>
300 <version>2.7</version>
301 <configuration>
302 <skip>true</skip>
303 </configuration>
304 </plugin>
305
Michael Landoed64b5e2017-06-09 03:19:04 +0300306 <!-- ============================================= -->
307 <!-- Create the JAR file with its dependencies -->
308 <!-- ============================================= -->
Michael Lando451a3402017-02-19 10:28:42 +0200309 <plugin>
310 <groupId>org.apache.maven.plugins</groupId>
311 <artifactId>maven-assembly-plugin</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +0200312 <executions>
313 <execution>
Michael Landoed64b5e2017-06-09 03:19:04 +0300314 <id>create.jar.with.dependencies</id>
Michael Lando451a3402017-02-19 10:28:42 +0200315 <phase>package</phase>
316 <goals>
317 <goal>single</goal>
318 </goals>
319 <configuration>
320 <archive>
321 <manifest>
322 <mainClass>org.openecomp.sdc.ci.tests.run.StartTest</mainClass>
323 </manifest>
324 </archive>
325 <descriptorRefs>
326 <descriptorRef>jar-with-dependencies</descriptorRef>
327 </descriptorRefs>
328 </configuration>
329 </execution>
330 </executions>
331 </plugin>
Michael Lando451a3402017-02-19 10:28:42 +0200332 </plugins>
333 </build>
Michael Lando451a3402017-02-19 10:28:42 +0200334</project>
335