blob: 072a610360690ea7f0582484e69540da87fdb85c [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>ui-ci</artifactId>
7 <description>Selenium tests for the SDnC Application</description>
8
9 <parent>
10 <groupId>org.openecomp.sdc</groupId>
11 <artifactId>sdc-main</artifactId>
12 <version>1.1.0-SNAPSHOT</version>
13 </parent>
14
15 <dependencies>
16 <dependency>
17 <groupId>com.google.guava</groupId>
18 <artifactId>guava</artifactId>
19 <version>${guava.version}</version>
20 <scope>compile</scope>
21 </dependency>
22
23 <dependency>
24 <groupId>org.seleniumhq.selenium</groupId>
25 <artifactId>selenium-java</artifactId>
26 <version>2.53.1</version>
27 </dependency>
28
29 <dependency>
30 <groupId>org.seleniumhq.selenium</groupId>
31 <artifactId>selenium-server</artifactId>
32 <version>2.53.1</version>
33 <scope>runtime</scope>
34 </dependency>
35
36 <dependency>
37 <groupId>commons-net</groupId>
38 <artifactId>commons-net</artifactId>
39 <version>3.3</version>
40 <scope>compile</scope>
41 </dependency>
42
43 <dependency>
44 <groupId>commons-io</groupId>
45 <artifactId>commons-io</artifactId>
46 <version>2.4</version>
47 <scope>compile</scope>
48 </dependency>
49
50 <dependency>
51 <groupId>org.openecomp.sdc</groupId>
52 <artifactId>test-apis-ci</artifactId>
53 <version>${project.version}</version>
54 <!-- <classifier>jar-with-dependencies</classifier> -->
55 <scope>compile</scope>
56 </dependency>
57
58 <dependency>
59 <groupId>org.yaml</groupId>
60 <artifactId>snakeyaml</artifactId>
61 <version>${snakeyaml.version}</version>
62 <scope>compile</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.functionaljava</groupId>
66 <artifactId>functionaljava</artifactId>
67 <version>${functionaljava.version}</version>
68 <scope>compile</scope>
69 </dependency>
70
71 <dependency>
72 <groupId>com.google.code.gson</groupId>
73 <artifactId>gson</artifactId>
74 <version>${gson.version}</version>
75 <scope>compile</scope>
76 </dependency>
77
78 <!-- http client -->
79 <dependency>
80 <groupId>org.apache.httpcomponents</groupId>
81 <artifactId>httpclient</artifactId>
82 <version>${httpclient.version}</version>
83 <scope>compile</scope>
84 </dependency>
85
86 <dependency>
87 <groupId>org.apache.httpcomponents</groupId>
88 <artifactId>httpmime</artifactId>
89 <version>${httpclient.version}</version>
90 <scope>compile</scope>
91 </dependency>
92
93 <dependency>
94 <groupId>commons-logging</groupId>
95 <artifactId>commons-logging</artifactId>
96 <version>${commons-logging}</version>
97 <scope>compile</scope>
98 </dependency>
99
100 <dependency>
101 <groupId>org.slf4j</groupId>
102 <artifactId>slf4j-api</artifactId>
103 <version>${slf4j-api.version}</version>
104 <scope>compile</scope>
105 </dependency>
106
107 <dependency>
108 <groupId>ch.qos.logback</groupId>
109 <artifactId>logback-classic</artifactId>
110 <version>${logback.version}</version>
111 <scope>compile</scope>
112 </dependency>
113
114 <dependency>
115 <groupId>ch.qos.logback</groupId>
116 <artifactId>logback-core</artifactId>
117 <version>${logback.version}</version>
118 <scope>compile</scope>
119 </dependency>
120
121 <!-- http core -->
122 <dependency>
123 <groupId>org.apache.httpcomponents</groupId>
124 <artifactId>httpcore</artifactId>
125 <version>${httpcore.version}</version>
126 <scope>compile</scope>
127 </dependency>
128
129 <!-- TITAN -->
130 <dependency>
131 <groupId>com.thinkaurelius.titan</groupId>
132 <artifactId>titan-core</artifactId>
133 <version>${titan.version}</version>
134 <scope>compile</scope>
135 </dependency>
136
137 <dependency>
138 <groupId>com.thinkaurelius.titan</groupId>
139 <artifactId>titan-cassandra</artifactId>
140 <version>${titan.version}</version>
141 <scope>compile</scope>
142 </dependency>
143
144 <dependency>
145 <groupId>org.codehaus.jackson</groupId>
146 <artifactId>jackson-mapper-asl</artifactId>
147 <version>1.9.2</version>
148 <scope>compile</scope>
149 </dependency>
150
151 <dependency>
152 <groupId>com.fasterxml.jackson.core</groupId>
153 <artifactId>jackson-databind</artifactId>
154 <version>2.3.1</version>
155 <scope>compile</scope>
156 </dependency>
157
158 <dependency>
159 <groupId>com.fasterxml.jackson.core</groupId>
160 <artifactId>jackson-core</artifactId>
161 <version>2.3.1</version>
162 <scope>compile</scope>
163 </dependency>
164
165 <dependency>
166 <groupId>com.fasterxml.jackson.core</groupId>
167 <artifactId>jackson-annotations</artifactId>
168 <version>${jackson.annotations.version}</version>
169 <scope>compile</scope>
170 </dependency>
171
172 <dependency>
173 <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
174 <artifactId>sdc-distribution-client</artifactId>
175 <version>1.1.9-SNAPSHOT</version>
176 <scope>compile</scope>
177 </dependency>
178
179 <dependency>
180 <groupId>junit</groupId>
181 <artifactId>junit</artifactId>
182 <version>${junit.version}</version>
183 <scope>compile</scope>
184 </dependency>
185
186 <dependency>
187 <groupId>org.testng</groupId>
188 <artifactId>testng</artifactId>
189 <version>${testng.version}</version>
190 <scope>compile</scope>
191 </dependency>
192
193 <dependency>
194 <groupId>xml-apis</groupId>
195 <artifactId>xml-apis</artifactId>
196 <version>1.4.01</version>
197 <scope>compile</scope>
198 </dependency>
199
200 <dependency>
201 <groupId>com.googlecode.json-simple</groupId>
202 <artifactId>json-simple</artifactId>
203 <version>${json-simple.version}</version>
204 <scope>compile</scope>
205 </dependency>
206
207 <dependency>
208 <groupId>org.apache.commons</groupId>
209 <artifactId>commons-jci-core</artifactId>
210 <version>${commons-jci-core.version}</version>
211 <scope>compile</scope>
212 </dependency>
213
214 <dependency>
215 <groupId>org.sikuli</groupId>
216 <artifactId>sikuli-api</artifactId>
217 <version>1.2.0</version>
218 </dependency>
219
220 <dependency>
221 <groupId>org.sikuli</groupId>
222 <artifactId>sikuli-core</artifactId>
223 <version>1.2.2</version>
224 </dependency>
225
226 <dependency>
227 <groupId>commons-codec</groupId>
228 <artifactId>commons-codec</artifactId>
229 <version>${commons-codec}</version>
230 <scope>compile</scope>
231 </dependency>
232
233 <dependency>
234 <groupId>com.aventstack</groupId>
235 <artifactId>extentreports</artifactId>
236 <version>3.0.6</version>
237 <scope>compile</scope>
238 </dependency>
239
240 <dependency>
241 <groupId>net.lightbody.bmp</groupId>
242 <!-- To use the legacy, Jetty-based implementation,
243 change the artifactId to browsermob-core -->
244 <artifactId>browsermob-core</artifactId>
245 <version>2.1.4</version>
246 </dependency>
247
248 <dependency>
249 <groupId>com.github.markusbernhardt</groupId>
250 <artifactId>proxy-vole</artifactId>
251 <version>1.0.2</version>
252 </dependency>
253
254 <dependency>
255 <groupId>com.paulhammant</groupId>
256 <artifactId>ngwebdriver</artifactId>
257 <version>0.9.7</version>
258 <scope>compile</scope>
259 </dependency>
260
261 </dependencies>
262
263 <build>
264 <plugins>
265
266 <!-- ================================================== -->
267 <!-- Get the next versions from the properties file. -->
268 <!-- ================================================== -->
269 <!--<plugin>-->
270 <!--<groupId>org.codehaus.mojo</groupId>-->
271 <!--<artifactId>properties-maven-plugin</artifactId>-->
272 <!--<version>1.0-alpha-1</version>-->
273 <!--<inherited>false</inherited>-->
274
275 <!--<executions>-->
276 <!--<execution>-->
277 <!--<id>ui-ci</id>-->
278 <!--<phase>initialize</phase>-->
279 <!--<goals>-->
280 <!--<goal>read-project-properties</goal>-->
281 <!--</goals>-->
282
283 <!--<configuration>-->
284 <!--<files>-->
285 <!--<file>../target/FullReleaseVersion.properties</file>-->
286 <!--</files>-->
287 <!--</configuration>-->
288 <!--</execution>-->
289 <!--</executions>-->
290 <!--</plugin>-->
291
292 <plugin>
293 <groupId>org.apache.maven.plugins</groupId>
294 <artifactId>maven-deploy-plugin</artifactId>
295 <version>2.7</version>
296 <configuration>
297 <skip>true</skip>
298 </configuration>
299 </plugin>
300
301 <!-- ============================================= -->
302 <!-- Create the JAR file with its dependencies -->
303 <!-- ============================================= -->
304 <plugin>
305 <groupId>org.apache.maven.plugins</groupId>
306 <artifactId>maven-assembly-plugin</artifactId>
307 <version>2.5.5</version>
308 <executions>
309 <execution>
310 <id>create.jar.with.dependencies</id>
311 <phase>package</phase>
312 <goals>
313 <goal>single</goal>
314 </goals>
315 <configuration>
316 <archive>
317 <manifest>
318 <mainClass>org.openecomp.sdc.ci.tests.execute.setup.SetupCDTest</mainClass>
319 </manifest>
320 </archive>
321 <descriptorRefs>
322 <descriptorRef>jar-with-dependencies</descriptorRef>
323 </descriptorRefs>
324 </configuration>
325 </execution>
326 </executions>
327 </plugin>
328 </plugins>
329 </build>
330
331 <profiles>
332 <profile>
333 <id>Fortify</id>
334 <activation>
335 <activeByDefault>false</activeByDefault>
336 </activation>
337
338 <build>
339 <plugins>
340
341 <!-- =========================== -->
342 <!-- HP Fortify scanner -->
343 <!-- =========================== -->
344 <plugin>
345 <groupId>com.fortify.ps.maven.plugin</groupId>
346 <artifactId>sca-maven-plugin</artifactId>
347 <version>4.30</version>
348 <configuration>
349 <scanEnabled>false</scanEnabled>
350 <skip>true</skip>
351 </configuration>
352 </plugin>
353 </plugins>
354 </build>
355 </profile>
356 </profiles>
357</project>