couchdb
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.cedarsoft</groupId>
<artifactId>couchdb</artifactId>
<version>2.5.0</version>
</dependency><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.cedarsoft.couchdb</groupId>
<artifactId>couchdb-parent</artifactId>
<version>2.5.0</version>
</parent>
<groupId>com.cedarsoft</groupId>
<artifactId>couchdb</artifactId>
<name>CouchDB</name>
<dependencies>
<dependency>
<groupId>com.cedarsoft.couchdb</groupId>
<artifactId>core</artifactId>
</dependency>
<dependency>
<groupId>com.cedarsoft.serialization</groupId>
<artifactId>jackson</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-client</artifactId>
</dependency>
<dependency>
<groupId>com.sun.jersey.contribs</groupId>
<artifactId>jersey-apache-client4</artifactId>
</dependency>
<dependency>
<groupId>com.cedarsoft.commons</groupId>
<artifactId>exceptions</artifactId>
</dependency>
<!--Guava-->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<!--Test Dependencies-->
<dependency>
<groupId>com.cedarsoft.commons</groupId>
<artifactId>test-utils</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.cedarsoft.serialization</groupId>
<artifactId>test-utils</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2</url>
</repository>
</repositories>
</project>