dse-native-protocol
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.datastax.dse</groupId> <artifactId>dse-native-protocol</artifactId> <version>1.2.3</version> </dependency>
<!-- Copyright DataStax, Inc. This software can be used solely with DataStax Enterprise. Please consult the license at http://www.datastax.com/terms/datastax-dse-driver-license-terms --> <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.datastax.dse</groupId> <artifactId>dse-native-protocol</artifactId> <version>1.2.3</version> <packaging>bundle</packaging> <name>Extension of the Apache Cassandra® native protocol for DataStax Enterprise</name> <description> A set of Java types representing the frames and messages of the DSE native protocol, with the associated serialization and deserialization logic </description> <url>http://docs.datastax.com/en/developer/java-driver-dse</url> <inceptionYear>2017</inceptionYear> <properties> <format.validateOnly>true</format.validateOnly> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <native-protocol.version>1.4.7</native-protocol.version> </properties> <dependencies> <dependency> <groupId>com.datastax.oss</groupId> <artifactId>native-protocol</artifactId> <version>${native-protocol.version}</version> </dependency> <dependency> <groupId>com.datastax.oss</groupId> <artifactId>native-protocol</artifactId> <version>${native-protocol.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.6.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.7.19</version> <scope>test</scope> </dependency> <dependency> <groupId>com.tngtech.java</groupId> <artifactId>junit-dataprovider</artifactId> <version>1.10.0</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> </plugin> <plugin> <groupId>com.coveo</groupId> <artifactId>fmt-maven-plugin</artifactId> <version>2.9</version> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>3.0</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerId>javac-with-errorprone</compilerId> <forceJavacCompilerUse>true</forceJavacCompilerUse> <source>1.8</source> <target>1.8</target> <compilerArgs combine.children="override"> <compilerArg>-Xep:FutureReturnValueIgnored:OFF</compilerArg> </compilerArgs> <showWarnings>true</showWarnings> <failOnWarning>true</failOnWarning> </configuration> <dependencies> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-compiler-javac-errorprone</artifactId> <version>2.8</version> </dependency> <dependency> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_core</artifactId> <version>2.2.0</version> </dependency> </dependencies> </plugin> <plugin> <groupId>com.coveo</groupId> <artifactId>fmt-maven-plugin</artifactId> <executions> <execution> <goals> <goal>check</goal> </goals> <phase>process-sources</phase> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <inlineHeader><![CDATA[ Copyright DataStax, Inc. This software can be used solely with DataStax Enterprise. Please consult the license at http://www.datastax.com/terms/datastax-dse-driver-license-terms]]> </inlineHeader> <includes> <include>src/**/*.java</include> <include>src/**/*.xml</include> <include>src/**/*.properties</include> <include>**/pom.xml</include> </includes> <excludes> <exclude>**/src/main/config/ide/**</exclude> </excludes> <mapping> <java>SLASHSTAR_STYLE</java> <properties>SCRIPT_STYLE</properties> </mapping> <strictCheck>true</strictCheck> </configuration> <executions> <execution> <id>check-license</id> <phase>initialize</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <properties> <property> <name>usedefaultlisteners</name> <value>false</value> </property> </properties> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>3.5.0</version> <extensions>true</extensions> <configuration> <instructions> <Bundle-SymbolicName>com.datastax.dse.protocol</Bundle-SymbolicName> <Export-Package>com.datastax.dse.protocol.internal.*</Export-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> <skipLocalStaging>true</skipLocalStaging> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <tagNameFormat>@{project.version}</tagNameFormat> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <licenses> <license> <name>DataStax DSE Driver License</name> <url>http://www.datastax.com/terms/datastax-dse-driver-license-terms</url> <distribution>repo</distribution> <comments /> </license> </licenses> <scm> <connection>scm:git:git@github.com:riptano/dse-native-protocol.git</connection> <developerConnection>scm:git:git@github.com:riptano/dse-native-protocol.git</developerConnection> <url>https://github.com/riptano/dse-native-protocol</url> <tag>1.2.3</tag> </scm> <developers> <developer> <name>Various</name> <organization>DataStax</organization> </developer> </developers> </project>