Commit 84b89661 authored by Dave Syer's avatar Dave Syer

Add couchbase client dependencies

parent de60c65e
<?xml version="1.0" encoding="UTF-8"?> <?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"> <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> <modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId> <artifactId>spring-boot-dependencies</artifactId>
...@@ -47,6 +48,7 @@ ...@@ -47,6 +48,7 @@
<activemq.version>5.7.0</activemq.version> <activemq.version>5.7.0</activemq.version>
<aspectj.version>1.7.4</aspectj.version> <aspectj.version>1.7.4</aspectj.version>
<codahale-metrics.version>3.0.2</codahale-metrics.version> <codahale-metrics.version>3.0.2</codahale-metrics.version>
<couchbase.version>1.3.2</couchbase.version>
<commons-dbcp.version>1.4</commons-dbcp.version> <commons-dbcp.version>1.4</commons-dbcp.version>
<commons-pool.version>1.6</commons-pool.version> <commons-pool.version>1.6</commons-pool.version>
<crashub.version>1.3.0-beta14</crashub.version> <crashub.version>1.3.0-beta14</crashub.version>
...@@ -126,6 +128,11 @@ ...@@ -126,6 +128,11 @@
<artifactId>metrics-servlets</artifactId> <artifactId>metrics-servlets</artifactId>
<version>${codahale-metrics.version}</version> <version>${codahale-metrics.version}</version>
</dependency> </dependency>
<dependency>
<groupId>com.couchbase.client</groupId>
<artifactId>couchbase-client</artifactId>
<version>${couchbase.version}</version>
</dependency>
<dependency> <dependency>
<groupId>com.fasterxml.jackson.core</groupId> <groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId> <artifactId>jackson-databind</artifactId>
......
...@@ -13,9 +13,18 @@ ...@@ -13,9 +13,18 @@
<main.basedir>${basedir}/../..</main.basedir> <main.basedir>${basedir}/../..</main.basedir>
</properties> </properties>
<dependencies> <dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.data</groupId> <groupId>org.springframework.data</groupId>
<artifactId>spring-data-couchbase</artifactId> <artifactId>spring-data-couchbase</artifactId>
</dependency> </dependency>
<dependency>
<groupId>com.couchbase.client</groupId>
<artifactId>couchbase-client</artifactId>
</dependency>
</dependencies> </dependencies>
</project> </project>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment