couchbase-columnar-java-client
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.couchbase.client</groupId> <artifactId>couchbase-columnar-java-client</artifactId> <version>1.0.6</version> </dependency>
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.couchbase.client</groupId> <artifactId>couchbase-jvm-clients</artifactId> <version>1.16.6</version><!--REL--> </parent> <artifactId>couchbase-columnar-java-client</artifactId> <version>1.0.6</version><!--REL--> <!-- Does not need packaging bundle as the felix plugin does this <packaging>bundle</packaging> --> <name>Couchbase Columnar Java SDK</name> <description>The official Couchbase Columnar Java SDK</description> <properties> <maven.compiler.release>17</maven.compiler.release> </properties> <dependencies> <!-- External, Required Dependencies --> <dependency> <groupId>com.couchbase.client</groupId> <artifactId>core-io</artifactId> <version>${core-io.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <!-- Copy this dependency declaration into your own project if you would like IntelliJ IDEA to warn you about using experimental API. (For Gradle, use `compileOnly`.)--> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>24.1.0</version> <scope>provided</scope> </dependency> <!-- External, Optional Dependencies --> <!-- Add GSON to your project if you want to use GsonDeserializer --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.11.0</version> <scope>test</scope> <!-- remove this line if copying into your project --> </dependency> <!-- Add DSL-JSON to your project if you want to use DslJsonDeserializer --> <dependency> <groupId>com.dslplatform</groupId> <artifactId>dsl-json</artifactId> <version>2.0.2</version> <scope>test</scope> <!-- remove this line if copying into your project --> </dependency> <!-- Test Dependencies --> <dependency> <groupId>com.couchbase.client</groupId> <artifactId>test-utils</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <version>${log4j-slf4j-impl.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-test</artifactId> <version>${reactor.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <source>8</source> <doclint>none</doclint> <quiet>true</quiet> </configuration> </execution> </executions> <configuration> <source>8</source> <tags> <tag> <name>implNote</name> <placement>a</placement> <head>Implementation Note:</head> </tag> </tags> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>${build-helper-maven-plugin.version}</version> <executions> <execution> <id>add-integration-test-source-as-test-sources</id> <phase>generate-test-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <!-- add the following sources in addition to the unit tests --> <source>${test-source-directory}</source> </sources> </configuration> </execution> <execution> <id>add-integration-test-resource-as-test-resource</id> <phase>generate-test-resources</phase> <goals> <goal>add-test-resource</goal> </goals> <configuration> <resources> <resource> <directory>${test-resource-directory}</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> <configuration> <archive> <manifestEntries> <Implementation-Version>${project.version}+${buildNumber}</Implementation-Version> <Build-Time>${maven.build.timestamp}</Build-Time> <Automatic-Module-Name>com.couchbase.columnar.client.java</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>default</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <!-- by default, add also the int tests --> <test-source-directory>src/integrationTest/java</test-source-directory> <test-resource-directory>src/integrationTest/resources</test-resource-directory> </properties> </profile> <profile> <id>unit</id> <activation> <property> <name>unit</name> <value>true</value> </property> </activation> <properties> <!-- just adding the unit tests again, noop. --> <test-source-directory>src/test/java</test-source-directory> <test-resource-directory>src/test/resources</test-resource-directory> </properties> </profile> </profiles> </project>