mirror of
https://github.com/nextcloud/android.git
synced 2024-11-26 23:28:42 +03:00
55 lines
1.7 KiB
XML
55 lines
1.7 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<groupId>com.owncloud</groupId>
|
||
|
<artifactId>androidtest</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.11</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.seleniumhq.selenium</groupId>
|
||
|
<artifactId>selenium-java</artifactId>
|
||
|
<version>2.44.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.selendroid</groupId>
|
||
|
<version>0.9.0</version>
|
||
|
<artifactId>selendroid-standalone</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.selendroid</groupId>
|
||
|
<version>0.9.0</version>
|
||
|
<artifactId>selendroid-client</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.appium</groupId>
|
||
|
<artifactId>java-client</artifactId>
|
||
|
<version>2.1.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-lang</groupId>
|
||
|
<artifactId>commons-lang</artifactId>
|
||
|
<version>2.6</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
<artifactId>httpclient</artifactId>
|
||
|
<version>4.3.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.google.android</groupId>
|
||
|
<artifactId>android</artifactId>
|
||
|
<version>4.1.1.4</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|