sstable-generator-cassandra-3-11-14
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.instaclustr</groupId> <artifactId>sstable-generator-cassandra-3-11-14</artifactId> <version>1.0</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"> <parent> <artifactId>sstable-generator-parent</artifactId> <groupId>com.instaclustr</groupId> <version>1.5</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>sstable-generator-cassandra-3-11-14</artifactId> <version>1.0</version> <build> <finalName>sstable-generator-cassandra-3</finalName> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>${version.maven.shade.plugin}</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <minimizeJar>false</minimizeJar> <createDependencyReducedPom>true</createDependencyReducedPom> <dependencyReducedPomLocation>${java.io.tmpdir}/dependency-reduced-pom.xml</dependencyReducedPomLocation> <transformers> <transformer> <mainClass>org.apache.cassandra.tools.Cassandra3CustomBulkLoader</mainClass> </transformer> </transformers> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> <exclude>META-INF/NOTICE.txt</exclude> <exclude>META-INF/DEPENDENCIES</exclude> <exclude>META-INF/LICENSE</exclude> <exclude>META-INF/MANIFEST.MF</exclude> <exclude>META-INF/LICENSE.txt</exclude> <exclude>META-INF/NOTICE</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.cassandra</groupId> <artifactId>cassandra-all</artifactId> <version>3.11.14</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.instaclustr</groupId> <artifactId>sstable-generator</artifactId> <version>1.5</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jul-to-slf4j</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>super-csv</artifactId> <groupId>net.sf.supercsv</groupId> </exclusion> </exclusions> </dependency> <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> <exclusion> <artifactId>commons-compress</artifactId> <groupId>org.apache.commons</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <version>3.1.6</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-library</artifactId> <groupId>org.hamcrest</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> </dependencies> <properties> <version.maven.shade.plugin>3.2.4</version.maven.shade.plugin> <version.junit>4.13.1</version.junit> <version.generator.api>${project.version}</version.generator.api> <version.cassandra311>3.11.14</version.cassandra311> <version.cassandra.driver>3.0.1</version.cassandra.driver> <version.embedded.cassandra>3.0.2</version.embedded.cassandra> <version.awaitility>3.1.6</version.awaitility> </properties> </project>