detox
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.wix</groupId>
<artifactId>detox</artifactId>
<version>0.1.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.wix</groupId>
<artifactId>detox</artifactId>
<version>0.1.1</version>
<packaging>aar</packaging>
<name>Detox</name>
<description>Gray box end-to-end testing and automation library for mobile apps</description>
<url>https://github.com/wix/Detox</url>
<licenses>
<license>
<name>The MIT License</name>
<url>https://github.com/wix/Detox/blob/master/LICENSE</url>
</license>
</licenses>
<developers>
<developer>
<name>WixMobile</name>
<email>mobile1@wix.com</email>
</developer>
<developer>
<name>d4vidi</name>
<email>amitd@wix.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/wix/detox.git</connection>
<developerConnection>scm:git:git@github.com/wix/detox.git</developerConnection>
<url>https://github.com/wix/detox</url>
</scm>
<dependencies>
<dependency>
<groupId>androidx.test.espresso</groupId>
<artifactId>espresso-core</artifactId>
<version>3.3.0</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>androidx.test.espresso</groupId>
<artifactId>espresso-web</artifactId>
<version>3.3.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>androidx.test</groupId>
<artifactId>rules</artifactId>
<version>1.2.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>androidx.test.ext</groupId>
<artifactId>junit</artifactId>
<version>1.1.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>androidx.test.uiautomator</groupId>
<artifactId>uiautomator</artifactId>
<version>2.2.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-android-extensions-runtime</artifactId>
<version>1.3.72</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>1.2.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.google.android.material</groupId>
<artifactId>material</artifactId>
<version>1.2.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.7</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.github.anrwatchdog</groupId>
<artifactId>anrwatchdog</artifactId>
<version>1.4.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>