dictionary-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.bazaarvoice.ostrich.examples.dictionary</groupId> <artifactId>dictionary-client</artifactId> <version>2.1.0</version> </dependency>
<?xml version="1.0"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.bazaarvoice.ostrich.examples.dictionary</groupId> <artifactId>dictionary</artifactId> <version>2.1.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>dictionary-client</artifactId> <packaging>jar</packaging> <name>dictionary-client</name> <description>Client API for the dictionary example</description> <dependencies> <dependency> <groupId>com.bazaarvoice.ostrich</groupId> <artifactId>ostrich-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-client</artifactId> <version>${dropwizard.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> </project>