blob: 891f92c26eeff07075b0ce88f0abcef10655c3cf [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>
Idan Amit39987c82017-09-13 13:51:41 +0300138 <groupId>org.openecomp.sdc.sdc-titan-cassandra</groupId>
139 <artifactId>sdc-titan-cassandra</artifactId>
Michael Landob3d48982017-06-11 14:22:02 +0300140 <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>
Michael Landob3d48982017-06-11 14:22:02 +0300265 <plugin>
266 <groupId>org.apache.maven.plugins</groupId>
267 <artifactId>maven-deploy-plugin</artifactId>
268 <version>2.7</version>
269 <configuration>
270 <skip>true</skip>
271 </configuration>
272 </plugin>
273
274 <!-- ============================================= -->
275 <!-- Create the JAR file with its dependencies -->
276 <!-- ============================================= -->
277 <plugin>
278 <groupId>org.apache.maven.plugins</groupId>
279 <artifactId>maven-assembly-plugin</artifactId>
280 <version>2.5.5</version>
281 <executions>
282 <execution>
283 <id>create.jar.with.dependencies</id>
284 <phase>package</phase>
285 <goals>
286 <goal>single</goal>
287 </goals>
288 <configuration>
289 <archive>
290 <manifest>
291 <mainClass>org.openecomp.sdc.ci.tests.execute.setup.SetupCDTest</mainClass>
292 </manifest>
293 </archive>
294 <descriptorRefs>
295 <descriptorRef>jar-with-dependencies</descriptorRef>
296 </descriptorRefs>
297 </configuration>
298 </execution>
299 </executions>
300 </plugin>
301 </plugins>
302 </build>
Michael Landob3d48982017-06-11 14:22:02 +0300303</project>