blob: 20597acbde8d03aeae0a2f1edcb4c3c67f388873 [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>
Michael Lando0ad3c802017-09-19 16:32:59 +030012 <version>1.2.0-SNAPSHOT</version>
Michael Landob3d48982017-06-11 14:22:02 +030013 </parent>
Michael Lando660b57d2017-10-11 09:45:53 +030014
15 <properties>
16 <sonar.skip>true</sonar.skip>
17 </properties>
Michael Landob3d48982017-06-11 14:22:02 +030018
19 <dependencies>
20 <dependency>
21 <groupId>com.google.guava</groupId>
22 <artifactId>guava</artifactId>
23 <version>${guava.version}</version>
24 <scope>compile</scope>
25 </dependency>
26
27 <dependency>
28 <groupId>org.seleniumhq.selenium</groupId>
29 <artifactId>selenium-java</artifactId>
30 <version>2.53.1</version>
31 </dependency>
32
33 <dependency>
34 <groupId>org.seleniumhq.selenium</groupId>
35 <artifactId>selenium-server</artifactId>
36 <version>2.53.1</version>
37 <scope>runtime</scope>
38 </dependency>
39
40 <dependency>
41 <groupId>commons-net</groupId>
42 <artifactId>commons-net</artifactId>
43 <version>3.3</version>
44 <scope>compile</scope>
45 </dependency>
46
47 <dependency>
48 <groupId>commons-io</groupId>
49 <artifactId>commons-io</artifactId>
50 <version>2.4</version>
51 <scope>compile</scope>
52 </dependency>
53
54 <dependency>
55 <groupId>org.openecomp.sdc</groupId>
56 <artifactId>test-apis-ci</artifactId>
57 <version>${project.version}</version>
58 <!-- <classifier>jar-with-dependencies</classifier> -->
59 <scope>compile</scope>
60 </dependency>
61
62 <dependency>
63 <groupId>org.yaml</groupId>
64 <artifactId>snakeyaml</artifactId>
65 <version>${snakeyaml.version}</version>
66 <scope>compile</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.functionaljava</groupId>
70 <artifactId>functionaljava</artifactId>
71 <version>${functionaljava.version}</version>
72 <scope>compile</scope>
73 </dependency>
74
75 <dependency>
76 <groupId>com.google.code.gson</groupId>
77 <artifactId>gson</artifactId>
78 <version>${gson.version}</version>
79 <scope>compile</scope>
80 </dependency>
81
82 <!-- http client -->
83 <dependency>
84 <groupId>org.apache.httpcomponents</groupId>
85 <artifactId>httpclient</artifactId>
86 <version>${httpclient.version}</version>
87 <scope>compile</scope>
88 </dependency>
89
90 <dependency>
91 <groupId>org.apache.httpcomponents</groupId>
92 <artifactId>httpmime</artifactId>
93 <version>${httpclient.version}</version>
94 <scope>compile</scope>
95 </dependency>
96
97 <dependency>
98 <groupId>commons-logging</groupId>
99 <artifactId>commons-logging</artifactId>
100 <version>${commons-logging}</version>
101 <scope>compile</scope>
102 </dependency>
103
104 <dependency>
105 <groupId>org.slf4j</groupId>
106 <artifactId>slf4j-api</artifactId>
107 <version>${slf4j-api.version}</version>
108 <scope>compile</scope>
109 </dependency>
110
111 <dependency>
112 <groupId>ch.qos.logback</groupId>
113 <artifactId>logback-classic</artifactId>
114 <version>${logback.version}</version>
115 <scope>compile</scope>
116 </dependency>
117
118 <dependency>
119 <groupId>ch.qos.logback</groupId>
120 <artifactId>logback-core</artifactId>
121 <version>${logback.version}</version>
122 <scope>compile</scope>
123 </dependency>
124
125 <!-- http core -->
126 <dependency>
127 <groupId>org.apache.httpcomponents</groupId>
128 <artifactId>httpcore</artifactId>
129 <version>${httpcore.version}</version>
130 <scope>compile</scope>
131 </dependency>
132
133 <!-- TITAN -->
134 <dependency>
135 <groupId>com.thinkaurelius.titan</groupId>
136 <artifactId>titan-core</artifactId>
137 <version>${titan.version}</version>
138 <scope>compile</scope>
139 </dependency>
140
141 <dependency>
Idan Amit39987c82017-09-13 13:51:41 +0300142 <groupId>org.openecomp.sdc.sdc-titan-cassandra</groupId>
143 <artifactId>sdc-titan-cassandra</artifactId>
Michael Landob3d48982017-06-11 14:22:02 +0300144 <version>${titan.version}</version>
145 <scope>compile</scope>
146 </dependency>
147
148 <dependency>
149 <groupId>org.codehaus.jackson</groupId>
150 <artifactId>jackson-mapper-asl</artifactId>
151 <version>1.9.2</version>
152 <scope>compile</scope>
153 </dependency>
154
155 <dependency>
156 <groupId>com.fasterxml.jackson.core</groupId>
157 <artifactId>jackson-databind</artifactId>
158 <version>2.3.1</version>
159 <scope>compile</scope>
160 </dependency>
161
162 <dependency>
163 <groupId>com.fasterxml.jackson.core</groupId>
164 <artifactId>jackson-core</artifactId>
165 <version>2.3.1</version>
166 <scope>compile</scope>
167 </dependency>
168
169 <dependency>
170 <groupId>com.fasterxml.jackson.core</groupId>
171 <artifactId>jackson-annotations</artifactId>
172 <version>${jackson.annotations.version}</version>
173 <scope>compile</scope>
174 </dependency>
175
176 <dependency>
177 <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
178 <artifactId>sdc-distribution-client</artifactId>
179 <version>1.1.9-SNAPSHOT</version>
180 <scope>compile</scope>
181 </dependency>
182
183 <dependency>
184 <groupId>junit</groupId>
185 <artifactId>junit</artifactId>
186 <version>${junit.version}</version>
187 <scope>compile</scope>
188 </dependency>
189
190 <dependency>
191 <groupId>org.testng</groupId>
192 <artifactId>testng</artifactId>
193 <version>${testng.version}</version>
194 <scope>compile</scope>
195 </dependency>
196
197 <dependency>
198 <groupId>xml-apis</groupId>
199 <artifactId>xml-apis</artifactId>
200 <version>1.4.01</version>
201 <scope>compile</scope>
202 </dependency>
203
204 <dependency>
205 <groupId>com.googlecode.json-simple</groupId>
206 <artifactId>json-simple</artifactId>
207 <version>${json-simple.version}</version>
208 <scope>compile</scope>
209 </dependency>
210
211 <dependency>
212 <groupId>org.apache.commons</groupId>
213 <artifactId>commons-jci-core</artifactId>
214 <version>${commons-jci-core.version}</version>
215 <scope>compile</scope>
216 </dependency>
217
218 <dependency>
219 <groupId>org.sikuli</groupId>
220 <artifactId>sikuli-api</artifactId>
221 <version>1.2.0</version>
222 </dependency>
223
224 <dependency>
225 <groupId>org.sikuli</groupId>
226 <artifactId>sikuli-core</artifactId>
227 <version>1.2.2</version>
228 </dependency>
229
230 <dependency>
231 <groupId>commons-codec</groupId>
232 <artifactId>commons-codec</artifactId>
233 <version>${commons-codec}</version>
234 <scope>compile</scope>
235 </dependency>
236
237 <dependency>
238 <groupId>com.aventstack</groupId>
239 <artifactId>extentreports</artifactId>
240 <version>3.0.6</version>
241 <scope>compile</scope>
242 </dependency>
243
244 <dependency>
245 <groupId>net.lightbody.bmp</groupId>
246 <!-- To use the legacy, Jetty-based implementation,
247 change the artifactId to browsermob-core -->
248 <artifactId>browsermob-core</artifactId>
249 <version>2.1.4</version>
250 </dependency>
251
252 <dependency>
253 <groupId>com.github.markusbernhardt</groupId>
254 <artifactId>proxy-vole</artifactId>
255 <version>1.0.2</version>
256 </dependency>
257
258 <dependency>
259 <groupId>com.paulhammant</groupId>
260 <artifactId>ngwebdriver</artifactId>
261 <version>0.9.7</version>
262 <scope>compile</scope>
263 </dependency>
264
265 </dependencies>
266
267 <build>
268 <plugins>
Michael Landob3d48982017-06-11 14:22:02 +0300269 <plugin>
270 <groupId>org.apache.maven.plugins</groupId>
271 <artifactId>maven-deploy-plugin</artifactId>
272 <version>2.7</version>
273 <configuration>
274 <skip>true</skip>
275 </configuration>
276 </plugin>
277
278 <!-- ============================================= -->
279 <!-- Create the JAR file with its dependencies -->
280 <!-- ============================================= -->
281 <plugin>
282 <groupId>org.apache.maven.plugins</groupId>
283 <artifactId>maven-assembly-plugin</artifactId>
Michael Landob3d48982017-06-11 14:22:02 +0300284 <executions>
285 <execution>
286 <id>create.jar.with.dependencies</id>
287 <phase>package</phase>
288 <goals>
289 <goal>single</goal>
290 </goals>
291 <configuration>
292 <archive>
293 <manifest>
294 <mainClass>org.openecomp.sdc.ci.tests.execute.setup.SetupCDTest</mainClass>
295 </manifest>
296 </archive>
297 <descriptorRefs>
298 <descriptorRef>jar-with-dependencies</descriptorRef>
299 </descriptorRefs>
300 </configuration>
301 </execution>
302 </executions>
303 </plugin>
304 </plugins>
305 </build>
Michael Landob3d48982017-06-11 14:22:02 +0300306</project>