[SDC-29] rebase continue work to align source
[sdc.git] / test-apis-ci / pom.xml
1 <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>
11                 <version>1.1.0-SNAPSHOT</version>
12         </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>
229                         <groupId>com.thinkaurelius.titan</groupId>
230                         <artifactId>titan-cassandra</artifactId>
231                         <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>
280                 <dependency>
281                     <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
282                     <artifactId>sdc-tosca-parser</artifactId>
283                     <version>1.1.9-SNAPSHOT</version>
284                     <scope>compile</scope>
285                 </dependency>
286         </dependencies>
287
288         <build>
289                 <plugins>
290
291                         <!-- ============================================= -->
292                         <!-- Get the next build number -->
293                         <!-- ============================================= -->
294                         <!--<plugin>-->
295                                 <!--<groupId>org.codehaus.mojo</groupId>-->
296                                 <!--<artifactId>properties-maven-plugin</artifactId>-->
297                                 <!--<version>1.0-alpha-1</version>-->
298                                 <!--<inherited>false</inherited>-->
299
300                                 <!--<executions>-->
301                                         <!--<execution>-->
302                                                 <!--<id>tests</id>-->
303                                                 <!--<phase>initialize</phase>-->
304                                                 <!--<goals>-->
305                                                         <!--<goal>read-project-properties</goal>-->
306                                                 <!--</goals>-->
307
308                                                 <!--<configuration>-->
309                                                         <!--<files>-->
310                                                                 <!--<file>../target/FullReleaseVersion.properties</file>-->
311                                                         <!--</files>-->
312                                                 <!--</configuration>-->
313                                         <!--</execution>-->
314                                 <!--</executions>-->
315                         <!--</plugin>-->
316
317                         <plugin>
318                                 <groupId>org.apache.maven.plugins</groupId>
319                                 <artifactId>maven-deploy-plugin</artifactId>
320                                 <version>2.7</version>
321                                 <configuration>
322                                         <skip>true</skip>
323                                 </configuration>
324                         </plugin>
325
326                         <!-- ============================================= -->
327                         <!-- Create the JAR file with its dependencies -->
328                         <!-- ============================================= -->
329                         <plugin>
330                                 <groupId>org.apache.maven.plugins</groupId>
331                                 <artifactId>maven-assembly-plugin</artifactId>
332                                 <version>2.5.5</version>
333                                 <executions>
334                                         <execution>
335                                                 <id>create.jar.with.dependencies</id>
336                                                 <phase>package</phase>
337                                                 <goals>
338                                                         <goal>single</goal>
339                                                 </goals>
340                                                 <configuration>
341                                                         <archive>
342                                                                 <manifest>
343                                                                         <mainClass>org.openecomp.sdc.ci.tests.run.StartTest</mainClass>
344                                                                 </manifest>
345                                                         </archive>
346                                                         <descriptorRefs>
347                                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
348                                                         </descriptorRefs>
349                                                 </configuration>
350                                         </execution>
351                                 </executions>
352                         </plugin>
353                 </plugins>
354         </build>
355
356         <profiles>
357                 <profile>
358                         <id>Fortify</id>
359                         <activation>
360                                 <activeByDefault>false</activeByDefault>
361                         </activation>
362
363                         <build>
364                                 <plugins>
365                                         <!-- =========================== -->
366                                         <!-- HP Fortifay scanner -->
367                                         <!-- =========================== -->
368                                         <plugin>
369                                                 <groupId>com.fortify.ps.maven.plugin</groupId>
370                                                 <artifactId>sca-maven-plugin</artifactId>
371                                                 <version>4.30</version>
372                                                 <configuration>
373                                                         <scanEnabled>false</scanEnabled>
374                                                         <skip>true</skip>
375                                                 </configuration>
376                                         </plugin>
377                                 </plugins>
378                         </build>
379                 </profile>
380         </profiles>
381 </project>