couchbase-testcontainer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.differentway</groupId> <artifactId>couchbase-testcontainer</artifactId> <version>1.12</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/xsd/maven-4.0.0.xsd"> <parent> <artifactId>testcontainers-parent</artifactId> <groupId>org.testcontainers</groupId> <version>1.5.1</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.github.differentway</groupId> <artifactId>couchbase-testcontainer</artifactId> <version>1.12</version> <name>TestContainers :: Couchbase</name> <description> Couchbase container for dockerized Couchbase testing under Testcontainers. </description> <url>https://github.com/differentway/testcontainers-java-module-couchbase</url> <properties> <couchbase.client.version>2.5.7</couchbase.client.version> </properties> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>differentway</id> <name>Tayeb Chlyah</name> <email>tayebchlyah@gmail.com</email> </developer> </developers> <dependencies> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>com.couchbase.client</groupId> <artifactId>java-client</artifactId> <version>${couchbase.client.version}</version> <scope>provided</scope> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <artifactId>maven-scm-plugin</artifactId> <version>1.9.4</version> <configuration> <tag>${project.version}</tag> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.6</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <scm> <connection>scm:git:https://github.com/differentway/testcontainers-java-module-couchbase.git</connection> <developerConnection>scm:git:git@github.com:differentway/testcontainers-java-module-couchbase.git </developerConnection> <url>https://github.com/differentway/testcontainers-java-module-couchbase</url> <tag>HEAD</tag> </scm> <profiles> <!--code signing--> <profile> <id>sign</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <!-- Packaging Sources and docs --> <profile> <id>build-extras</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>