#265 - Add example for Spring Data Couchbase.
Original pull request: #275.
This commit is contained in:
committed by
Mark Paluch
parent
4b648b1d50
commit
5ba65308a7
28
couchbase/example/pom.xml
Normal file
28
couchbase/example/pom.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<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>
|
||||
|
||||
<artifactId>spring-data-couchbase-example</artifactId>
|
||||
<name>Basic sample for Spring Data Couchbase</name>
|
||||
|
||||
<parent>
|
||||
<artifactId>spring-data-couchbase-examples</artifactId>
|
||||
<groupId>org.springframework.data.examples</groupId>
|
||||
<version>1.0.0.BUILD-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>**/*IntegrationTest*</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
Reference in New Issue
Block a user