blob: af86e1f99d355793ba1d718daa64a190e6d9a253 [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 Landoa5445102018-03-04 14:53:33 +020014
Michael Lando660b57d2017-10-11 09:45:53 +030015 <properties>
Gitelman, Tal (tg851x)e482ae42018-03-11 19:37:06 +020016 <sonar.skip>true</sonar.skip>
Tal Gitelman51d50f02017-12-10 18:55:03 +020017 <jacoco.skip>true</jacoco.skip>
Michael Landoa5445102018-03-04 14:53:33 +020018 <aspectj.version>1.8.10</aspectj.version>
Michael Lando660b57d2017-10-11 09:45:53 +030019 </properties>
Michael Landob3d48982017-06-11 14:22:02 +030020
21 <dependencies>
22 <dependency>
23 <groupId>com.google.guava</groupId>
24 <artifactId>guava</artifactId>
25 <version>${guava.version}</version>
26 <scope>compile</scope>
27 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +020028
Michael Landob3d48982017-06-11 14:22:02 +030029 <dependency>
30 <groupId>org.seleniumhq.selenium</groupId>
31 <artifactId>selenium-java</artifactId>
32 <version>2.53.1</version>
33 </dependency>
34
35 <dependency>
36 <groupId>org.seleniumhq.selenium</groupId>
37 <artifactId>selenium-server</artifactId>
38 <version>2.53.1</version>
39 <scope>runtime</scope>
40 </dependency>
41
42 <dependency>
43 <groupId>commons-net</groupId>
44 <artifactId>commons-net</artifactId>
45 <version>3.3</version>
46 <scope>compile</scope>
47 </dependency>
48
49 <dependency>
50 <groupId>commons-io</groupId>
51 <artifactId>commons-io</artifactId>
52 <version>2.4</version>
53 <scope>compile</scope>
54 </dependency>
55
56 <dependency>
57 <groupId>org.openecomp.sdc</groupId>
58 <artifactId>test-apis-ci</artifactId>
59 <version>${project.version}</version>
Michael Landob3d48982017-06-11 14:22:02 +030060 <scope>compile</scope>
61 </dependency>
62
63 <dependency>
64 <groupId>org.yaml</groupId>
65 <artifactId>snakeyaml</artifactId>
66 <version>${snakeyaml.version}</version>
67 <scope>compile</scope>
68 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +020069 <dependency>
Michael Landob3d48982017-06-11 14:22:02 +030070 <groupId>org.functionaljava</groupId>
71 <artifactId>functionaljava</artifactId>
72 <version>${functionaljava.version}</version>
73 <scope>compile</scope>
74 </dependency>
75
76 <dependency>
77 <groupId>com.google.code.gson</groupId>
78 <artifactId>gson</artifactId>
79 <version>${gson.version}</version>
80 <scope>compile</scope>
81 </dependency>
82
83 <!-- http client -->
84 <dependency>
85 <groupId>org.apache.httpcomponents</groupId>
86 <artifactId>httpclient</artifactId>
Michael Landoa5445102018-03-04 14:53:33 +020087 <version>${httpclient.version}</version>
Michael Landob3d48982017-06-11 14:22:02 +030088 <scope>compile</scope>
89 </dependency>
90
91 <dependency>
92 <groupId>org.apache.httpcomponents</groupId>
93 <artifactId>httpmime</artifactId>
Michael Landoa5445102018-03-04 14:53:33 +020094 <version>${httpclient.version}</version>
Michael Landob3d48982017-06-11 14:22:02 +030095 <scope>compile</scope>
96 </dependency>
97
98 <dependency>
99 <groupId>commons-logging</groupId>
100 <artifactId>commons-logging</artifactId>
Michael Landoa5445102018-03-04 14:53:33 +0200101 <version>${commons-logging}</version>
Michael Landob3d48982017-06-11 14:22:02 +0300102 <scope>compile</scope>
103 </dependency>
104
105 <dependency>
106 <groupId>org.slf4j</groupId>
107 <artifactId>slf4j-api</artifactId>
Michael Landoa5445102018-03-04 14:53:33 +0200108 <version>${slf4j-api.version}</version>
Michael Landob3d48982017-06-11 14:22:02 +0300109 <scope>compile</scope>
110 </dependency>
111
112 <dependency>
113 <groupId>ch.qos.logback</groupId>
114 <artifactId>logback-classic</artifactId>
Michael Landoa5445102018-03-04 14:53:33 +0200115 <version>${logback.version}</version>
Michael Landob3d48982017-06-11 14:22:02 +0300116 <scope>compile</scope>
117 </dependency>
118
119 <dependency>
120 <groupId>ch.qos.logback</groupId>
121 <artifactId>logback-core</artifactId>
Michael Landoa5445102018-03-04 14:53:33 +0200122 <version>${logback.version}</version>
Michael Landob3d48982017-06-11 14:22:02 +0300123 <scope>compile</scope>
124 </dependency>
125
126 <!-- http core -->
127 <dependency>
128 <groupId>org.apache.httpcomponents</groupId>
129 <artifactId>httpcore</artifactId>
130 <version>${httpcore.version}</version>
131 <scope>compile</scope>
132 </dependency>
133
134 <!-- TITAN -->
135 <dependency>
136 <groupId>com.thinkaurelius.titan</groupId>
137 <artifactId>titan-core</artifactId>
138 <version>${titan.version}</version>
139 <scope>compile</scope>
140 </dependency>
141
142 <dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200143 <groupId>com.thinkaurelius.titan</groupId>
144 <artifactId>titan-cassandra</artifactId>
Michael Landob3d48982017-06-11 14:22:02 +0300145 <version>${titan.version}</version>
146 <scope>compile</scope>
147 </dependency>
148
149 <dependency>
150 <groupId>org.codehaus.jackson</groupId>
151 <artifactId>jackson-mapper-asl</artifactId>
152 <version>1.9.2</version>
153 <scope>compile</scope>
154 </dependency>
155
156 <dependency>
157 <groupId>com.fasterxml.jackson.core</groupId>
158 <artifactId>jackson-databind</artifactId>
Gitelman, Tal (tg851x)483c3d92018-03-12 18:41:15 +0200159 <version>${jackson.version}</version>
Michael Landob3d48982017-06-11 14:22:02 +0300160 <scope>compile</scope>
161 </dependency>
162
163 <dependency>
164 <groupId>com.fasterxml.jackson.core</groupId>
165 <artifactId>jackson-core</artifactId>
Gitelman, Tal (tg851x)483c3d92018-03-12 18:41:15 +0200166 <version>${jackson.version}</version>
Michael Landob3d48982017-06-11 14:22:02 +0300167 <scope>compile</scope>
168 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200169
Michael Landob3d48982017-06-11 14:22:02 +0300170 <dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200171 <groupId>com.fasterxml.jackson.core</groupId>
172 <artifactId>jackson-annotations</artifactId>
Michael Landob3d48982017-06-11 14:22:02 +0300173 <version>${jackson.annotations.version}</version>
Michael Landoa5445102018-03-04 14:53:33 +0200174 <scope>compile</scope>
175 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300176
177 <dependency>
178 <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
179 <artifactId>sdc-distribution-client</artifactId>
Michael Landoa5445102018-03-04 14:53:33 +0200180 <version>1.2.3</version>
Michael Landob3d48982017-06-11 14:22:02 +0300181 <scope>compile</scope>
182 </dependency>
183
184 <dependency>
185 <groupId>junit</groupId>
186 <artifactId>junit</artifactId>
187 <version>${junit.version}</version>
188 <scope>compile</scope>
189 </dependency>
190
191 <dependency>
192 <groupId>org.testng</groupId>
193 <artifactId>testng</artifactId>
Michael Landoa5445102018-03-04 14:53:33 +0200194 <version>6.11</version>
Michael Landob3d48982017-06-11 14:22:02 +0300195 <scope>compile</scope>
196 </dependency>
197
198 <dependency>
199 <groupId>xml-apis</groupId>
200 <artifactId>xml-apis</artifactId>
201 <version>1.4.01</version>
202 <scope>compile</scope>
203 </dependency>
204
205 <dependency>
206 <groupId>com.googlecode.json-simple</groupId>
207 <artifactId>json-simple</artifactId>
208 <version>${json-simple.version}</version>
209 <scope>compile</scope>
210 </dependency>
211
212 <dependency>
213 <groupId>org.apache.commons</groupId>
214 <artifactId>commons-jci-core</artifactId>
215 <version>${commons-jci-core.version}</version>
216 <scope>compile</scope>
217 </dependency>
218
219 <dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300220 <groupId>commons-codec</groupId>
221 <artifactId>commons-codec</artifactId>
Michael Landoa5445102018-03-04 14:53:33 +0200222 <version>${commons-codec}</version>
Michael Landob3d48982017-06-11 14:22:02 +0300223 <scope>compile</scope>
224 </dependency>
225
226 <dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200227 <groupId>com.aventstack</groupId>
228 <artifactId>extentreports</artifactId>
229 <version>3.0.6</version>
230 <scope>compile</scope>
Michael Landob3d48982017-06-11 14:22:02 +0300231 </dependency>
232
233 <dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200234 <groupId>net.lightbody.bmp</groupId>
235 <!-- To use the legacy, Jetty-based implementation, change the artifactId
236 to browsermob-core -->
237 <artifactId>browsermob-core</artifactId>
238 <version>2.1.4</version>
239 </dependency>
240
241 <dependency>
242 <groupId>com.github.markusbernhardt</groupId>
243 <artifactId>proxy-vole</artifactId>
244 <version>1.0.2</version>
245 </dependency>
246
247 <dependency>
248 <groupId>com.paulhammant</groupId>
249 <artifactId>ngwebdriver</artifactId>
250 <version>0.9.7</version>
251 <scope>compile</scope>
252 </dependency>
253
254 <dependency>
255 <groupId>com.google.inject</groupId>
256 <artifactId>guice</artifactId>
257 <version>4.1.0</version>
258 </dependency>
Michael Landob3d48982017-06-11 14:22:02 +0300259 </dependencies>
260
261 <build>
262 <plugins>
Michael Landob3d48982017-06-11 14:22:02 +0300263 <plugin>
264 <groupId>org.apache.maven.plugins</groupId>
265 <artifactId>maven-deploy-plugin</artifactId>
266 <version>2.7</version>
267 <configuration>
268 <skip>true</skip>
269 </configuration>
270 </plugin>
271
272 <!-- ============================================= -->
273 <!-- Create the JAR file with its dependencies -->
274 <!-- ============================================= -->
275 <plugin>
276 <groupId>org.apache.maven.plugins</groupId>
277 <artifactId>maven-assembly-plugin</artifactId>
Michael Landob3d48982017-06-11 14:22:02 +0300278 <executions>
279 <execution>
280 <id>create.jar.with.dependencies</id>
281 <phase>package</phase>
282 <goals>
283 <goal>single</goal>
284 </goals>
285 <configuration>
286 <archive>
287 <manifest>
288 <mainClass>org.openecomp.sdc.ci.tests.execute.setup.SetupCDTest</mainClass>
289 </manifest>
290 </archive>
291 <descriptorRefs>
292 <descriptorRef>jar-with-dependencies</descriptorRef>
293 </descriptorRefs>
294 </configuration>
295 </execution>
296 </executions>
297 </plugin>
298 </plugins>
299 </build>
Michael Landob3d48982017-06-11 14:22:02 +0300300</project>