singlestore-jdbc-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.singlestore</groupId> <artifactId>singlestore-jdbc-client</artifactId> <version>1.2.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"> <modelVersion>4.0.0</modelVersion> <groupId>com.singlestore</groupId> <artifactId>singlestore-jdbc-client</artifactId> <name>singlestore-jdbc-client</name> <version>1.2.8</version> <description>SingleStore JDBC Driver</description> <url>https://github.com/memsql/S2-JDBC-Connector</url> <developers> <developer> <id>singlestore</id> <name>SingleStore</name> <email>team@singlestore.com</email> <organization>SingleStore</organization> <organizationUrl>https://www.singlestore.com/</organizationUrl> </developer> </developers> <licenses> <license> <name>LGPL-2.1-or-later</name> </license> </licenses> <scm> <connection>scm:git:git@github.com:memsql/S2-JDBC-Connector.git</connection> <developerConnection>scm:git:git@github.com:memsql/S2-JDBC-Connector.git</developerConnection> <tag>singlestore-jdbc-client-1.2.8</tag> <url>git://git@github.com:memsql/S2-JDBC-Connector.git</url> </scm> <organization> <name>SingleStore</name> <url>https://www.singlestore.com/</url> </organization> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> </resource> </resources> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <executions> <execution> <id>compile-java-8</id> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>compile-java-9</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> <configuration> <release>9</release> <source>9</source> <target>9</target> <compilerArgs> <arg>--add-exports</arg> <arg>jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED</arg> <arg>--add-exports</arg> <arg>jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED</arg> <arg>--add-exports</arg> <arg>jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED</arg> <arg>--add-exports</arg> <arg>jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED</arg> <arg>--add-exports</arg> <arg>jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED</arg> </compilerArgs> <compileSourceRoots> <compileSourceRoot>${project.basedir}/src/main/java9</compileSourceRoot> </compileSourceRoots> <multiReleaseOutput>true</multiReleaseOutput> </configuration> </execution> <execution> <id>compile-java-11</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> <configuration> <release>11</release> <source>11</source> <target>11</target> <compileSourceRoots> <compileSourceRoot>${project.basedir}/src/main/java11</compileSourceRoot> </compileSourceRoots> <multiReleaseOutput>true</multiReleaseOutput> </configuration> </execution> </executions> <configuration> <showWarnings>true</showWarnings> <source>1.8</source> <target>1.8</target> <compilerArgs> <arg>-Xlint:all,-options,-path,-processing</arg> </compilerArgs> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>8</source> <excludePackageNames>com.singlestore.jdbc.client,com.singlestore.jdbc.codec,com.singlestore.jdbc.message,com.singlestore.jdbc.util</excludePackageNames> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> <configuration> <archive> <manifestEntries> <Multi-Release>true</Multi-Release> <Export-Package>com.singlestore.jdbc</Export-Package> <Import-Package>javax.naming,javax.naming.ldap,javax.management,javax.sql,javax.net;resolution:=optional,javax.net.ssl;resolution:=optional,javax.transaction.xa;resolution:=optional,waffle.windows.auth;resolution:=optional,waffle.windows.auth.impl;resolution:=optional,org.ietf.jgss;resolution:=optional,javax.security.auth.login;resolution:=optional,javax.security.auth.x500;resolution:=optional,javax.crypto;resolution:=optional,software.amazon.awssdk.*;resolution:=optional,org.slf4j;resolution:=optional</Import-Package> </manifestEntries> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <executions> <execution> <phase>deploy</phase> </execution> </executions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> <stagingProgressTimeoutMinutes>15</stagingProgressTimeoutMinutes> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.cosium.code</groupId> <artifactId>git-code-format-maven-plugin</artifactId> <version>2.7</version> <executions> <execution> <goals> <goal>install-hooks</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>[3.5.4,)</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>java8</id> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <executions> <execution> <id>compile-java-8</id> <goals> <goal>compile</goal> </goals> </execution> </executions> <configuration> <showWarnings>true</showWarnings> <compilerArgs> <arg>-Xlint:all,-options,-path,-processing</arg> </compilerArgs> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback-java8.version}</version> <scope>test</scope> </dependency> </dependencies> </profile> <profile> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> <configuration> <argLine>--illegal-access=warn</argLine> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.4.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <finalName>singlestore-jdbc-client-${project.version}-browser-sso-uber</finalName> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> <artifactSet> <includes> <include>com.fasterxml.jackson.datatype:jackson-datatype-jsr310</include> <include>com.fasterxml.jackson.core:*</include> <include>com.auth0:java-jwt</include> <include>org.slf4j:slf4j-api</include> <include>org.apache.httpcomponents:*</include> <include>de.swiesend:secret-service</include> <include>at.favre.lib:hkdf</include> <include>com.github.hypfvieh:dbus-java</include> <include>com.github.jnr:*</include> <include>org.ow2.asm:*</include> <include>net.java.dev.jna:*</include> </includes> </artifactSet> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> <configuration> <destFile>${jacoco.reportPath}</destFile> <append>true</append> <excludes> <exclude>META-INF/**</exclude> </excludes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.5.6</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>logback-core</artifactId> <groupId>ch.qos.logback</groupId> </exclusion> </exclusions> </dependency> </dependencies> </profile> <profile> <id>test-jdk</id> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <artifactId>maven-toolchains-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <goals> <goal>toolchain</goal> </goals> </execution> </executions> <configuration> <toolchains> <jdk> <version>11</version> </jdk> </toolchains> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.3</version> <executions> <execution> <id>jdk-8</id> <goals> <goal>test</goal> </goals> <configuration> <jdkToolchain> <version>8</version> <vendor>openJdk</vendor> </jdkToolchain> </configuration> </execution> <execution> <id>jdk-11</id> <goals> <goal>test</goal> </goals> <configuration> <jdkToolchain> <version>11</version> <vendor>openJdk</vendor> </jdkToolchain> </configuration> </execution> <execution> <id>jdk-17</id> <goals> <goal>test</goal> </goals> <configuration> <jdkToolchain> <version>17</version> <vendor>openJdk</vendor> </jdkToolchain> </configuration> </execution> <execution> <id>jdk-21</id> <goals> <goal>test</goal> </goals> <configuration> <jdkToolchain> <version>21</version> <vendor>openJdk</vendor> </jdkToolchain> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>bench</id> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <executions> <execution> <id>compile-java-8</id> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>compile-java-9</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> <configuration> <release>9</release> <source>9</source> <target>9</target> <compilerArgs> <arg>--add-exports</arg> <arg>jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED</arg> <arg>--add-exports</arg> <arg>jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED</arg> <arg>--add-exports</arg> <arg>jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED</arg> <arg>--add-exports</arg> <arg>jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED</arg> <arg>--add-exports</arg> <arg>jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED</arg> </compilerArgs> <compileSourceRoots> <compileSourceRoot>${project.basedir}/src/main/java9</compileSourceRoot> </compileSourceRoots> <multiReleaseOutput>true</multiReleaseOutput> </configuration> </execution> <execution> <id>compile-java-11</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> <configuration> <release>11</release> <source>11</source> <target>11</target> <compileSourceRoots> <compileSourceRoot>${project.basedir}/src/main/java11</compileSourceRoot> </compileSourceRoots> <multiReleaseOutput>true</multiReleaseOutput> </configuration> </execution> </executions> <configuration> <showWarnings>true</showWarnings> <compilerArgs> <arg>-Xlint:all,-options,-path,-processing</arg> </compilerArgs> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>src/benchmark/java</source> </sources> </configuration> </execution> <execution> <id>add-resource</id> <phase>generate-resources</phase> <goals> <goal>add-resource</goal> </goals> <configuration> <resources> <resource> <directory>src/benchmark/resources</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <finalName>benchmarks</finalName> <transformers> <transformer> <mainClass>org.openjdk.jmh.Main</mainClass> </transformer> </transformers> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> <version>${jmh.version}</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> <version>${jmh.version}</version> </dependency> <dependency> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> <version>${mysql-connector-java.version}</version> </dependency> <dependency> <groupId>org.mariadb.jdbc</groupId> <artifactId>mariadb-java-client</artifactId> <version>${mariadb-connector-java.version}</version> </dependency> </dependencies> </profile> </profiles> <dependencies> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <version>6.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> <version>5.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.24.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.5.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> <exclusion> <artifactId>junit-platform-engine</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit-pioneer</groupId> <artifactId>junit-pioneer</artifactId> <version>1.9.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-jupiter-params</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-platform-launcher</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>rds</artifactId> <version>2.21.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.github.waffle</groupId> <artifactId>waffle-jna</artifactId> <version>3.3.0</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.5.6</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>logback-core</artifactId> <groupId>ch.qos.logback</groupId> </exclusion> </exclusions> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>${junit.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>bom</artifactId> <version>2.21.1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <jmh.version>1.37</jmh.version> <osgi.compendium.version>5.0.0</osgi.compendium.version> <bnd-maven-plugin.version>6.3.1</bnd-maven-plugin.version> <spotless.version>2.40.0</spotless.version> <mariadb-connector-java.version>3.3.0</mariadb-connector-java.version> <mysql-connector-java.version>8.4.0</mysql-connector-java.version> <jacoco.version>0.8.12</jacoco.version> <junit-pioneer.version>1.9.1</junit-pioneer.version> <waffle-jna.version>3.3.0</waffle-jna.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <assertj.version>3.24.2</assertj.version> <junit.version>5.5.2</junit.version> <osgi.version>6.0.0</osgi.version> <logback.version>1.5.6</logback.version> <logback-java8.version>1.3.12</logback-java8.version> <jna.version>5.13.0</jna.version> </properties> </project>