cassandra-sidecar
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.instaclustr</groupId> <artifactId>cassandra-sidecar</artifactId> <version>2.0.0-alpha8</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> <groupId>com.instaclustr</groupId> <artifactId>cassandra-sidecar</artifactId> <name>cassandra-sidecar</name> <version>2.0.0-alpha8</version> <description>Sidecar for Apache Cassandra</description> <url>https://github.com/instaclustr/cassandra-sidecar</url> <inceptionYear>2019</inceptionYear> <developers> <developer> <name>Various</name> <organization>Instaclustr</organization> <organizationUrl>https://www.instaclustr.com</organizationUrl> </developer> </developers> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:git://git@github.com:instaclustr/cassandra-sidecar.git</connection> <developerConnection>scm:git:ssh://github.com/instaclustr/cassandra-sidecar.git</developerConnection> <url>git://github.com/instaclustr/cassandra-sidecar.git</url> </scm> <organization> <name>Instaclustr</name> <url>https://instaclustr.com</url> </organization> <build> <finalName>cassandra-sidecar</finalName> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>${maven.shade.plugin.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> <transformers> <transformer> <mainClass>com.instaclustr.cassandra.sidecar.SidecarAggregationCommand</mainClass> </transformer> <transformer /> </transformers> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${maven.jar.plugin.version}</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> <manifestEntries> <Git-Commit>${git.commit.id}</Git-Commit> <Build-Time>${git.build.time}</Build-Time> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <version>${git.command.plugin.version}</version> <executions> <execution> <goals> <goal>revision</goal> </goals> </execution> </executions> <configuration> <dotGitDirectory>${project.basedir}/../.git</dotGitDirectory> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>${java.version}</source> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <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> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <executions> <execution> <id>injected-nexus-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </execution> </executions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>singleNode</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <suiteXmlFiles> <suiteXmlFile>${project.basedir}/src/test/resources/singlenode.xml</suiteXmlFile> </suiteXmlFiles> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>multiNode</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <suiteXmlFiles> <suiteXmlFile>${project.basedir}/src/test/resources/multinode.xml</suiteXmlFile> </suiteXmlFiles> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>noCloudTests</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <excludedGroups>cloudTest,azureTest,googleTest,s3Test</excludedGroups> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>cloudTests</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <groups>cloudTest</groups> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>azureTests</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <groups>azureTest</groups> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>googleTests</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <groups>googleTest</groups> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>s3Tests</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <groups>s3Test</groups> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>com.github.nosan</groupId> <artifactId>embedded-cassandra</artifactId> <version>3.0.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>embedded-cassandra-api</artifactId> <groupId>com.github.nosan</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.14.3</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jcommander</artifactId> <groupId>com.beust</groupId> </exclusion> <exclusion> <artifactId>bsh</artifactId> <groupId>org.apache-extras.beanshell</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.23.4</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> </exclusions> </dependency> </dependencies> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <instaclustr.backup.restore.version>2.0.0-alpha8</instaclustr.backup.restore.version> <cassandra.driver.version>4.6.0</cassandra.driver.version> <nexus.staging.maven.plugin.version>1.6.8</nexus.staging.maven.plugin.version> <maven.source.plugin.version>3.1.0</maven.source.plugin.version> <mockito.version>2.23.4</mockito.version> <version.embedded.cassandra>3.0.2</version.embedded.cassandra> <testng.version>6.14.3</testng.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.surefire.plugin.version>3.0.0-M4</maven.surefire.plugin.version> <maven.compiler.source>${java.version}</maven.compiler.source> <java.version>1.8</java.version> <instaclustr.sidecar.common.version>1.3.7</instaclustr.sidecar.common.version> <maven.javadoc.plugin.version>3.1.1</maven.javadoc.plugin.version> <maven.gpg.plugin.version>1.6</maven.gpg.plugin.version> <maven.compiler.target>${java.version}</maven.compiler.target> <awaitility.version>3.1.6</awaitility.version> <maven.shade.plugin.version>3.1.1</maven.shade.plugin.version> <git.command.plugin.version>2.2.4</git.command.plugin.version> <maven.jar.plugin.version>3.1.1</maven.jar.plugin.version> </properties> </project>