scylla-driver-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.scylladb</groupId> <artifactId>scylla-driver-core</artifactId> <version>3.11.5.8</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>scylla-driver-parent</artifactId> <groupId>com.scylladb</groupId> <version>3.11.5.8</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>scylla-driver-core</artifactId> <name>Java Driver for Scylla and Apache Cassandra - Core</name> <description>A driver for Scylla and Apache Cassandra 1.2+ that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's binary protocol.</description> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>test-jar</id> <goals> <goal>test-jar</goal> </goals> </execution> </executions> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-test-sources</id> <goals> <goal>test-jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> <configuration> <manifestLocation>${project.build.outputDirectory}/META-INF</manifestLocation> <instructions> <Import-Package>com.google.common.*;version="16.0.1",!jnr.*,io.netty.channel.epoll,*</Import-Package> </instructions> </configuration> </execution> <execution> <id>bundle-manifest-shaded</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> <configuration> <manifestLocation>${project.build.directory}/META-INF-shaded</manifestLocation> <instructions> <Import-Package>com.google.common.*;version="16.0.1",!jnr.*,!io.netty.*,!com.codahale.metrics,javax.security.cert,javax.management,*</Import-Package> <Private-Package>com.datastax.shaded.*</Private-Package> <Export-Package>com.datastax.shaded.metrics;*</Export-Package> </instructions> </configuration> </execution> </executions> <configuration> <instructions> <Bundle-SymbolicName>com.datastax.driver.core</Bundle-SymbolicName> </instructions> <archive> <forced>true</forced> </archive> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <shadedArtifactAttached>true</shadedArtifactAttached> <artifactSet> <includes> <include>io.netty:*</include> <include>io.dropwizard.metrics:metrics-core</include> </includes> <excludes> <exclude>io.netty:netty-transport-native-epoll</exclude> </excludes> </artifactSet> <relocations> <relocation> <pattern>io.netty</pattern> <shadedPattern>com.datastax.shaded.netty</shadedPattern> </relocation> <relocation> <pattern>com.codahale.metrics</pattern> <shadedPattern>com.datastax.shaded.metrics</shadedPattern> </relocation> </relocations> <transformers> <transformer> <resources> <resource>META-INF/MANIFEST.MF</resource> <resource>META-INF/io.netty.versions.properties</resource> <resource>META-INF/maven/io.netty/netty-buffer/pom.properties</resource> <resource>META-INF/maven/io.netty/netty-buffer/pom.xml</resource> <resource>META-INF/maven/io.netty/netty-codec/pom.properties</resource> <resource>META-INF/maven/io.netty/netty-codec/pom.xml</resource> <resource>META-INF/maven/io.netty/netty-common/pom.properties</resource> <resource>META-INF/maven/io.netty/netty-common/pom.xml</resource> <resource>META-INF/maven/io.netty/netty-handler/pom.properties</resource> <resource>META-INF/maven/io.netty/netty-handler/pom.xml</resource> <resource>META-INF/maven/io.netty/netty-transport/pom.properties</resource> <resource>META-INF/maven/io.netty/netty-transport/pom.xml</resource> <resource>META-INF/maven/io.dropwizard.metrics/metrics-core/pom.properties</resource> <resource>META-INF/maven/io.dropwizard.metrics/metrics-core/pom.xml</resource> </resources> </transformer> <transformer> <resource>META-INF/MANIFEST.MF</resource> <file>${project.build.directory}/META-INF-shaded/MANIFEST.MF</file> </transformer> </transformers> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>isolated</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>false</skip> <includes> <include>**/SSL*Test.java</include> <include>**/ControlConnectionTest.java</include> <include>**/ExtendedPeerCheckDisabledTest.java</include> <include>**/UUIDsPID*.java</include> <include>**/FrameLengthTest.java</include> <include>**/HeapCompressionTest.java</include> </includes> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>19.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.25</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.jnr</groupId> <artifactId>jnr-ffi</artifactId> <version>2.2.16</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.jnr</groupId> <artifactId>jnr-posix</artifactId> <version>3.1.15</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.xerial.snappy</groupId> <artifactId>snappy-java</artifactId> <version>1.1.10.5</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.lz4</groupId> <artifactId>lz4-java</artifactId> <version>1.4.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-transport-native-epoll</artifactId> <version>4.1.119.Final</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.hdrhistogram</groupId> <artifactId>HdrHistogram</artifactId> <version>2.1.10</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.8.8</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>bsh</artifactId> <groupId>org.beanshell</groupId> </exclusion> <exclusion> <artifactId>jcommander</artifactId> <groupId>com.beust</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>1.7.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.10.8</version> <scope>test</scope> </dependency> <dependency> <groupId>org.scassandra</groupId> <artifactId>java-client</artifactId> <version>1.1.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>logback-classic</artifactId> <groupId>ch.qos.logback</groupId> </exclusion> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>httpclient</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>gson</artifactId> <groupId>com.google.code.gson</groupId> </exclusion> <exclusion> <artifactId>cql-antlr</artifactId> <groupId>org.scassandra</groupId> </exclusion> <exclusion> <artifactId>scassandra-server_2.11</artifactId> <groupId>org.scassandra</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-exec</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-tcnative-boringssl-static</artifactId> <version>2.0.70.Final</version> <classifier>linux-x86_64</classifier> <scope>test</scope> <exclusions> <exclusion> <artifactId>netty-tcnative-classes</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>netty-tcnative-boringssl-static</artifactId> <groupId>io.netty</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.7.25</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.tomakehurst</groupId> <artifactId>wiremock</artifactId> <version>2.25.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jetty-server</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>jetty-servlet</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>jetty-servlets</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>jetty-webapp</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>xmlunit-core</artifactId> <groupId>org.xmlunit</groupId> </exclusion> <exclusion> <artifactId>xmlunit-legacy</artifactId> <groupId>org.xmlunit</groupId> </exclusion> <exclusion> <artifactId>xmlunit-placeholders</artifactId> <groupId>org.xmlunit</groupId> </exclusion> <exclusion> <artifactId>json-path</artifactId> <groupId>com.jayway.jsonpath</groupId> </exclusion> <exclusion> <artifactId>jopt-simple</artifactId> <groupId>net.sf.jopt-simple</groupId> </exclusion> <exclusion> <artifactId>commons-lang3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>zjsonpatch</artifactId> <groupId>com.flipkart.zjsonpatch</groupId> </exclusion> <exclusion> <artifactId>handlebars</artifactId> <groupId>com.github.jknack</groupId> </exclusion> <exclusion> <artifactId>handlebars-helpers</artifactId> <groupId>com.github.jknack</groupId> </exclusion> <exclusion> <artifactId>commons-fileupload</artifactId> <groupId>commons-fileupload</groupId> </exclusion> <exclusion> <artifactId>httpclient</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman-bmunit</artifactId> <version>3.0.8</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>testng</artifactId> <groupId>org.testng</groupId> </exclusion> <exclusion> <artifactId>byteman</artifactId> <groupId>org.jboss.byteman</groupId> </exclusion> <exclusion> <artifactId>byteman-submit</artifactId> <groupId>org.jboss.byteman</groupId> </exclusion> <exclusion> <artifactId>byteman-install</artifactId> <groupId>org.jboss.byteman</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.15.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.15.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <version>2.15.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk18on</artifactId> <version>1.78.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk18on</artifactId> <version>1.78.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcutil-jdk18on</artifactId> <version>1.78.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.burningwave</groupId> <artifactId>tools</artifactId> <version>0.27.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>core</artifactId> <groupId>org.burningwave</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <version>4.3.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>