selenograph-service
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ru.qatools.seleniumkit</groupId> <artifactId>selenograph-service</artifactId> <version>1.2</version> </dependency>
<?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"> <parent> <artifactId>selenograph</artifactId> <groupId>ru.qatools.seleniumkit</groupId> <version>1.2</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>selenograph-service</artifactId> <dependencies> <!-- Camelot MongoDB & FST --> <dependency> <groupId>ru.yandex.qatools.camelot</groupId> <artifactId>camelot-serialize-fst</artifactId> </dependency> <dependency> <groupId>ru.yandex.qatools.camelot</groupId> <artifactId>camelot-mongodb</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <version>2.7.3</version> </dependency> <dependency> <groupId>org.mongojack</groupId> <artifactId>mongojack</artifactId> <version>2.6.0</version> </dependency> <dependency> <groupId>ru.yandex.qatools.embed</groupId> <artifactId>embedded-services</artifactId> <version>1.21</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>mongo-java-driver</artifactId> <groupId>org.mongodb</groupId> </exclusion> </exclusions> </dependency> <!-- Beans --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>selenograph-beans</artifactId> </dependency> <!-- Grid Router --> <dependency> <groupId>ru.qatools.seleniumkit</groupId> <artifactId>gridrouter-proxy</artifactId> <classifier>classes</classifier> </dependency> <!-- Camelot & utils --> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> </dependency> <dependency> <groupId>ru.yandex.qatools.camelot</groupId> <artifactId>camelot-core</artifactId> </dependency> <dependency> <groupId>ru.yandex.qatools.camelot</groupId> <artifactId>camelot-api</artifactId> </dependency> <dependency> <groupId>ru.yandex.qatools.clay</groupId> <artifactId>clay-utils</artifactId> </dependency> <dependency> <groupId>ru.yandex.qatools.camelot.utils</groupId> <artifactId>plugin-utils</artifactId> <version>1.4.1</version> </dependency> <!-- Testing --> <dependency> <groupId>ru.yandex.qatools.camelot</groupId> <artifactId>camelot-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.jayway.awaitility</groupId> <artifactId>awaitility</artifactId> <version>1.7.0</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> </exclusion> <exclusion> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </exclusion> <exclusion> <artifactId>cglib-nodep</artifactId> <groupId>cglib</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ru.yandex.qatools.properties</groupId> <artifactId>properties-loader</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.5</version> <scope>test</scope> </dependency> </dependencies> </project>