921
pom.xml
921
pom.xml
@@ -1,337 +1,594 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-data-couchbase</artifactId>
|
||||
<version>5.0.0-SNAPSHOT</version>
|
||||
|
||||
<name>Spring Data Couchbase</name>
|
||||
<description>Spring Data integration for Couchbase</description>
|
||||
<url>https://github.com/spring-projects/spring-data-couchbase</url>
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.data.build</groupId>
|
||||
<artifactId>spring-data-parent</artifactId>
|
||||
<version>3.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
<couchbase>3.3.0</couchbase>
|
||||
<couchbase.osgi>3.3.0</couchbase.osgi>
|
||||
<springdata.commons>3.0.0-SNAPSHOT</springdata.commons>
|
||||
<java-module-name>spring.data.couchbase</java-module-name>
|
||||
<jodatime>2.10.13</jodatime>
|
||||
<jakarta.validation>3.0.1</jakarta.validation>
|
||||
<hibernate.validator>7.0.1.Final</hibernate.validator>
|
||||
<apt>1.1.3</apt>
|
||||
<querydsl>5.0.0</querydsl>
|
||||
<mysema.querydsl>3.7.4</mysema.querydsl>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.testcontainers</groupId>
|
||||
<artifactId>testcontainers-bom</artifactId>
|
||||
<version>${testcontainers}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>org.springframework.data</groupId>
|
||||
|
||||
<artifactId>spring-data-couchbase</artifactId>
|
||||
|
||||
<version>5.0.0-SNAPSHOT</version>
|
||||
|
||||
<name>Spring Data Couchbase</name>
|
||||
|
||||
<description>Spring Data integration for Couchbase</description>
|
||||
|
||||
<url>https://github.com/spring-projects/spring-data-couchbase</url>
|
||||
|
||||
<parent>
|
||||
|
||||
<groupId>org.springframework.data.build</groupId>
|
||||
|
||||
<artifactId>spring-data-parent</artifactId>
|
||||
|
||||
<version>3.0.0-M4</version>
|
||||
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
|
||||
<couchbase>3.3.0</couchbase>
|
||||
|
||||
<couchbase.osgi>3.3.0</couchbase.osgi>
|
||||
|
||||
<springdata.commons>3.0.0-M4</springdata.commons>
|
||||
|
||||
<java-module-name>spring.data.couchbase</java-module-name>
|
||||
|
||||
<jodatime>2.10.13</jodatime>
|
||||
|
||||
<jakarta.validation>3.0.1</jakarta.validation>
|
||||
|
||||
<hibernate.validator>7.0.1.Final</hibernate.validator>
|
||||
|
||||
<apt>1.1.3</apt>
|
||||
|
||||
<querydsl>5.0.0</querydsl>
|
||||
|
||||
<mysema.querydsl>3.7.4</mysema.querydsl>
|
||||
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.querydsl</groupId>
|
||||
<artifactId>querydsl-apt</artifactId>
|
||||
<version>${querydsl}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-context-support</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-web</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-tx</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<artifactId>spring-data-commons</artifactId>
|
||||
<version>${springdata.commons}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.couchbase.client</groupId>
|
||||
<artifactId>java-client</artifactId>
|
||||
<version>${couchbase}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- CDI -->
|
||||
<dependency>
|
||||
<groupId>jakarta.enterprise</groupId>
|
||||
<artifactId>jakarta.enterprise.cdi-api</artifactId>
|
||||
<version>3.0.0</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-test</artifactId>
|
||||
<version>${spring}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.hibernate.validator</groupId>
|
||||
<artifactId>hibernate-validator</artifactId>
|
||||
<version>7.0.1.Final</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
<artifactId>httpclient</artifactId>
|
||||
<version>4.5.13</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>io.projectreactor</groupId>
|
||||
<artifactId>reactor-test</artifactId>
|
||||
<version>3.4.6</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-databind</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>joda-time</groupId>
|
||||
<artifactId>joda-time</artifactId>
|
||||
<version>${jodatime}</version>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.testcontainers</groupId>
|
||||
<artifactId>testcontainers</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- JSR 303 Validation -->
|
||||
<dependency>
|
||||
<groupId>jakarta.validation</groupId>
|
||||
<artifactId>jakarta.validation-api</artifactId>
|
||||
<version>${validation}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>jakarta.el</groupId>
|
||||
<artifactId>jakarta.el-api</artifactId>
|
||||
<version>4.0.0</version>
|
||||
<scope>provided</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>javax.el</groupId>
|
||||
<artifactId>javax.el-api</artifactId>
|
||||
<version>3.0.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.glassfish</groupId>
|
||||
<artifactId>jakarta.el</artifactId>
|
||||
<version>4.0.2</version>
|
||||
<scope>provided</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
<!-- CDI -->
|
||||
<!-- Dependency order required to build against CDI 1.0 and test with CDI 2.0 -->
|
||||
<dependency>
|
||||
<groupId>org.apache.geronimo.specs</groupId>
|
||||
<artifactId>geronimo-jcdi_2.0_spec</artifactId>
|
||||
<version>1.0.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>javax.interceptor</groupId>
|
||||
<artifactId>javax.interceptor-api</artifactId>
|
||||
<version>1.2.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.openwebbeans</groupId>
|
||||
<artifactId>openwebbeans-se</artifactId>
|
||||
<version>${webbeans}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.couchbase.mock</groupId>
|
||||
<artifactId>CouchbaseMock</artifactId>
|
||||
<version>1.5.25</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.squareup.okhttp3</groupId>
|
||||
<artifactId>okhttp</artifactId>
|
||||
<version>4.8.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.squareup.okhttp3</groupId>
|
||||
<artifactId>okhttp-tls</artifactId>
|
||||
<version>4.8.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Kotlin extension -->
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.kotlin</groupId>
|
||||
<artifactId>kotlin-stdlib</artifactId>
|
||||
<version>${kotlin}</version>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.kotlin</groupId>
|
||||
<artifactId>kotlin-reflect</artifactId>
|
||||
<version>${kotlin}</version>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.kotlin</groupId>
|
||||
<artifactId>kotlin-test</artifactId>
|
||||
<version>${kotlin}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.awaitility</groupId>
|
||||
<artifactId>awaitility</artifactId>
|
||||
<version>4.0.3</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.testcontainers</groupId>
|
||||
|
||||
<artifactId>testcontainers-bom</artifactId>
|
||||
|
||||
<version>${testcontainers}</version>
|
||||
|
||||
<type>pom</type>
|
||||
|
||||
<scope>import</scope>
|
||||
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>spring-libs-snapshot</id>
|
||||
<url>https://repo.spring.io/libs-snapshot</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>sonatype-snapshot</id>
|
||||
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>jitpack.io</id>
|
||||
<url>https://jitpack.io</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>spring-plugins-release</id>
|
||||
<url>https://repo.spring.io/plugins-release</url>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<useSystemClassLoader>false</useSystemClassLoader>
|
||||
<useFile>false</useFile>
|
||||
<includes>
|
||||
<include>**/*Test.java</include>
|
||||
<include>**/*Tests.java</include>
|
||||
</includes>
|
||||
<excludes>
|
||||
<exclude>**/*IntegrationTest.java</exclude>
|
||||
<exclude>**/*IntegrationTests.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-failsafe-plugin</artifactId>
|
||||
<configuration>
|
||||
<includes>
|
||||
<include>**/*IntegrationTest.java</include>
|
||||
<include>**/*IntegrationTests.java</include>
|
||||
</includes>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>integration-test</goal>
|
||||
<goal>verify</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.asciidoctor</groupId>
|
||||
<artifactId>asciidoctor-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>com.mysema.maven</groupId>
|
||||
<artifactId>apt-maven-plugin</artifactId>
|
||||
<version>${apt}</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.querydsl</groupId>
|
||||
<artifactId>querydsl-apt</artifactId>
|
||||
<version>${querydsl}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>generate-test-sources</phase>
|
||||
<goals>
|
||||
<goal>test-process</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<outputDirectory>target/generated-test-sources</outputDirectory>
|
||||
<processor>org.springframework.data.couchbase.repository.support.CouchbaseAnnotationProcessor</processor>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</dependencyManagement>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>com.querydsl</groupId>
|
||||
|
||||
<artifactId>querydsl-apt</artifactId>
|
||||
|
||||
<version>${querydsl}</version>
|
||||
|
||||
<scope>provided</scope>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.springframework</groupId>
|
||||
|
||||
<artifactId>spring-context-support</artifactId>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.springframework</groupId>
|
||||
|
||||
<artifactId>spring-web</artifactId>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.springframework</groupId>
|
||||
|
||||
<artifactId>spring-tx</artifactId>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>${project.groupId}</groupId>
|
||||
|
||||
<artifactId>spring-data-commons</artifactId>
|
||||
|
||||
<version>${springdata.commons}</version>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>com.couchbase.client</groupId>
|
||||
|
||||
<artifactId>java-client</artifactId>
|
||||
|
||||
<version>${couchbase}</version>
|
||||
|
||||
</dependency>
|
||||
|
||||
<!-- CDI -->
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>jakarta.enterprise</groupId>
|
||||
|
||||
<artifactId>jakarta.enterprise.cdi-api</artifactId>
|
||||
|
||||
<version>3.0.0</version>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.springframework</groupId>
|
||||
|
||||
<artifactId>spring-test</artifactId>
|
||||
|
||||
<version>${spring}</version>
|
||||
|
||||
<scope>test</scope>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.hibernate.validator</groupId>
|
||||
|
||||
<artifactId>hibernate-validator</artifactId>
|
||||
|
||||
<version>7.0.1.Final</version>
|
||||
|
||||
<scope>test</scope>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
|
||||
<artifactId>httpclient</artifactId>
|
||||
|
||||
<version>4.5.13</version>
|
||||
|
||||
<scope>test</scope>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>io.projectreactor</groupId>
|
||||
|
||||
<artifactId>reactor-test</artifactId>
|
||||
|
||||
<version>3.4.6</version>
|
||||
|
||||
<scope>test</scope>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
|
||||
<artifactId>jackson-databind</artifactId>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>joda-time</groupId>
|
||||
|
||||
<artifactId>joda-time</artifactId>
|
||||
|
||||
<version>${jodatime}</version>
|
||||
|
||||
<optional>true</optional>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.testcontainers</groupId>
|
||||
|
||||
<artifactId>testcontainers</artifactId>
|
||||
|
||||
<scope>test</scope>
|
||||
|
||||
</dependency>
|
||||
|
||||
<!-- JSR 303 Validation -->
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>jakarta.validation</groupId>
|
||||
|
||||
<artifactId>jakarta.validation-api</artifactId>
|
||||
|
||||
<version>${validation}</version>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>jakarta.el</groupId>
|
||||
|
||||
<artifactId>jakarta.el-api</artifactId>
|
||||
|
||||
<version>4.0.0</version>
|
||||
|
||||
<scope>provided</scope>
|
||||
|
||||
<optional>true</optional>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>javax.el</groupId>
|
||||
|
||||
<artifactId>javax.el-api</artifactId>
|
||||
|
||||
<version>3.0.0</version>
|
||||
|
||||
<scope>test</scope>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.glassfish</groupId>
|
||||
|
||||
<artifactId>jakarta.el</artifactId>
|
||||
|
||||
<version>4.0.2</version>
|
||||
|
||||
<scope>provided</scope>
|
||||
|
||||
<optional>true</optional>
|
||||
|
||||
</dependency>
|
||||
|
||||
<!-- CDI -->
|
||||
|
||||
<!-- Dependency order required to build against CDI 1.0 and test with CDI 2.0 -->
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.apache.geronimo.specs</groupId>
|
||||
|
||||
<artifactId>geronimo-jcdi_2.0_spec</artifactId>
|
||||
|
||||
<version>1.0.1</version>
|
||||
|
||||
<scope>test</scope>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>javax.interceptor</groupId>
|
||||
|
||||
<artifactId>javax.interceptor-api</artifactId>
|
||||
|
||||
<version>1.2.1</version>
|
||||
|
||||
<scope>test</scope>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.apache.openwebbeans</groupId>
|
||||
|
||||
<artifactId>openwebbeans-se</artifactId>
|
||||
|
||||
<version>${webbeans}</version>
|
||||
|
||||
<scope>test</scope>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>com.couchbase.mock</groupId>
|
||||
|
||||
<artifactId>CouchbaseMock</artifactId>
|
||||
|
||||
<version>1.5.25</version>
|
||||
|
||||
<scope>test</scope>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>com.squareup.okhttp3</groupId>
|
||||
|
||||
<artifactId>okhttp</artifactId>
|
||||
|
||||
<version>4.8.1</version>
|
||||
|
||||
<scope>test</scope>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>com.squareup.okhttp3</groupId>
|
||||
|
||||
<artifactId>okhttp-tls</artifactId>
|
||||
|
||||
<version>4.8.1</version>
|
||||
|
||||
<scope>test</scope>
|
||||
|
||||
</dependency>
|
||||
|
||||
<!-- Kotlin extension -->
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.jetbrains.kotlin</groupId>
|
||||
|
||||
<artifactId>kotlin-stdlib</artifactId>
|
||||
|
||||
<version>${kotlin}</version>
|
||||
|
||||
<optional>true</optional>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.jetbrains.kotlin</groupId>
|
||||
|
||||
<artifactId>kotlin-reflect</artifactId>
|
||||
|
||||
<version>${kotlin}</version>
|
||||
|
||||
<optional>true</optional>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.jetbrains.kotlin</groupId>
|
||||
|
||||
<artifactId>kotlin-test</artifactId>
|
||||
|
||||
<version>${kotlin}</version>
|
||||
|
||||
<scope>test</scope>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.awaitility</groupId>
|
||||
|
||||
<artifactId>awaitility</artifactId>
|
||||
|
||||
<version>4.0.3</version>
|
||||
|
||||
<scope>test</scope>
|
||||
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
<repositories>
|
||||
|
||||
<repository>
|
||||
|
||||
<id>spring-libs-milestone</id>
|
||||
|
||||
<url>https://repo.spring.io/libs-milestone</url>
|
||||
|
||||
</repository>
|
||||
|
||||
<repository>
|
||||
|
||||
<id>sonatype-snapshot</id>
|
||||
|
||||
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||||
|
||||
<snapshots>
|
||||
|
||||
<enabled>true</enabled>
|
||||
|
||||
</snapshots>
|
||||
|
||||
<releases>
|
||||
|
||||
<enabled>false</enabled>
|
||||
|
||||
</releases>
|
||||
|
||||
</repository>
|
||||
|
||||
<repository>
|
||||
|
||||
<id>jitpack.io</id>
|
||||
|
||||
<url>https://jitpack.io</url>
|
||||
|
||||
</repository>
|
||||
|
||||
</repositories>
|
||||
|
||||
<pluginRepositories>
|
||||
|
||||
<pluginRepository>
|
||||
|
||||
<id>spring-plugins-release</id>
|
||||
|
||||
<url>https://repo.spring.io/plugins-release</url>
|
||||
|
||||
</pluginRepository>
|
||||
|
||||
</pluginRepositories>
|
||||
|
||||
<build>
|
||||
|
||||
<plugins>
|
||||
|
||||
<plugin>
|
||||
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
|
||||
<configuration>
|
||||
|
||||
<useSystemClassLoader>false</useSystemClassLoader>
|
||||
|
||||
<useFile>false</useFile>
|
||||
|
||||
<includes>
|
||||
|
||||
<include>**/*Test.java</include>
|
||||
|
||||
<include>**/*Tests.java</include>
|
||||
|
||||
</includes>
|
||||
|
||||
<excludes>
|
||||
|
||||
<exclude>**/*IntegrationTest.java</exclude>
|
||||
|
||||
<exclude>**/*IntegrationTests.java</exclude>
|
||||
|
||||
</excludes>
|
||||
|
||||
</configuration>
|
||||
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
|
||||
<artifactId>maven-failsafe-plugin</artifactId>
|
||||
|
||||
<configuration>
|
||||
|
||||
<includes>
|
||||
|
||||
<include>**/*IntegrationTest.java</include>
|
||||
|
||||
<include>**/*IntegrationTests.java</include>
|
||||
|
||||
</includes>
|
||||
|
||||
</configuration>
|
||||
|
||||
<executions>
|
||||
|
||||
<execution>
|
||||
|
||||
<goals>
|
||||
|
||||
<goal>integration-test</goal>
|
||||
|
||||
<goal>verify</goal>
|
||||
|
||||
</goals>
|
||||
|
||||
</execution>
|
||||
|
||||
</executions>
|
||||
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
|
||||
<groupId>org.asciidoctor</groupId>
|
||||
|
||||
<artifactId>asciidoctor-maven-plugin</artifactId>
|
||||
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
|
||||
<groupId>com.mysema.maven</groupId>
|
||||
|
||||
<artifactId>apt-maven-plugin</artifactId>
|
||||
|
||||
<version>${apt}</version>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>com.querydsl</groupId>
|
||||
|
||||
<artifactId>querydsl-apt</artifactId>
|
||||
|
||||
<version>${querydsl}</version>
|
||||
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
<executions>
|
||||
|
||||
<execution>
|
||||
|
||||
<phase>generate-test-sources</phase>
|
||||
|
||||
<goals>
|
||||
|
||||
<goal>test-process</goal>
|
||||
|
||||
</goals>
|
||||
|
||||
<configuration>
|
||||
|
||||
<outputDirectory>target/generated-test-sources</outputDirectory>
|
||||
|
||||
<processor>org.springframework.data.couchbase.repository.support.CouchbaseAnnotationProcessor</processor>
|
||||
|
||||
</configuration>
|
||||
|
||||
</execution>
|
||||
|
||||
</executions>
|
||||
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
|
||||
</build>
|
||||
|
||||
</project>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
Spring Data Couchbase 5.0 M3 (2022.0.0)
|
||||
Spring Data Couchbase 5.0 M4 (2022.0.0)
|
||||
Copyright (c) [2013-2019] Couchbase / Pivotal Software, Inc.
|
||||
|
||||
This product is licensed to you under the Apache License, Version 2.0 (the "License").
|
||||
@@ -32,5 +32,6 @@ conditions of the subcomponent's license, as noted in the LICENSE file.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user