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