add id and contentdescription to a layout
[pub/Android/ownCloud.git] / automationTest / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <groupId>com.owncloud</groupId>
8 <artifactId>androidtest</artifactId>
9 <version>1.0-SNAPSHOT</version>
10 <build>
11 <pluginManagement>
12 <plugins>
13 <plugin>
14 <groupId>org.apache.maven.plugins</groupId>
15 <artifactId>maven-surefire-plugin</artifactId>
16 <version>2.18.1</version>
17 <configuration>
18 <includes>
19 <include>**/*Test**.java</include>
20 </includes>
21 </configuration>
22 </plugin>
23 </plugins>
24 </pluginManagement>
25 </build>
26 <dependencies>
27 <dependency>
28 <groupId>junit</groupId>
29 <artifactId>junit</artifactId>
30 <version>4.11</version>
31 </dependency>
32 <dependency>
33 <groupId>org.seleniumhq.selenium</groupId>
34 <artifactId>selenium-java</artifactId>
35 <version>2.45.0</version>
36 </dependency>
37 <dependency>
38 <groupId>io.selendroid</groupId>
39 <version>0.9.0</version>
40 <artifactId>selendroid-standalone</artifactId>
41 </dependency>
42 <dependency>
43 <groupId>io.selendroid</groupId>
44 <version>0.9.0</version>
45 <artifactId>selendroid-client</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>io.appium</groupId>
49 <artifactId>java-client</artifactId>
50 <version>2.1.0</version>
51 </dependency>
52 <dependency>
53 <groupId>commons-lang</groupId>
54 <artifactId>commons-lang</artifactId>
55 <version>2.6</version>
56 </dependency>
57 <dependency>
58 <groupId>org.apache.httpcomponents</groupId>
59 <artifactId>httpclient</artifactId>
60 <version>4.3.1</version>
61 </dependency>
62 <dependency>
63 <groupId>com.google.android</groupId>
64 <artifactId>android</artifactId>
65 <version>4.1.1.4</version>
66 <scope>provided</scope>
67 </dependency>
68 </dependencies>
69
70 </project>