Merge pull request #1088 from owncloud/updated_docs_about_target_of_PRs
[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 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-compiler-plugin</artifactId>
26 <version>3.3</version>
27 <configuration>
28 <source>1.7</source>
29 <target>1.7</target>
30 </configuration>
31 </plugin>
32 </plugins>
33 </pluginManagement>
34 </build>
35 <dependencies>
36 <dependency>
37 <groupId>junit</groupId>
38 <artifactId>junit</artifactId>
39 <version>4.11</version>
40 </dependency>
41 <dependency>
42 <groupId>org.seleniumhq.selenium</groupId>
43 <artifactId>selenium-java</artifactId>
44 <version>2.45.0</version>
45 </dependency>
46 <dependency>
47 <groupId>io.selendroid</groupId>
48 <version>0.9.0</version>
49 <artifactId>selendroid-standalone</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>io.selendroid</groupId>
53 <version>0.9.0</version>
54 <artifactId>selendroid-client</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>io.appium</groupId>
58 <artifactId>java-client</artifactId>
59 <version>2.2.0</version>
60 </dependency>
61 <dependency>
62 <groupId>commons-lang</groupId>
63 <artifactId>commons-lang</artifactId>
64 <version>2.6</version>
65 </dependency>
66 <dependency>
67 <groupId>org.apache.httpcomponents</groupId>
68 <artifactId>httpclient</artifactId>
69 <version>4.3.1</version>
70 </dependency>
71 <dependency>
72 <groupId>com.google.android</groupId>
73 <artifactId>android</artifactId>
74 <version>4.1.1.4</version>
75 <scope>provided</scope>
76 </dependency>
77 </dependencies>
78 </project>