bqjdbc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.google.looker-open-source</groupId> <artifactId>bqjdbc</artifactId> <version>3.2.0</version> </dependency>
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- Original was net.starschema.clouddb.bqjdbc but it's not changed so we can publish to a groupId that we have ownership over --> <groupId>com.google.looker-open-source</groupId> <artifactId>bqjdbc</artifactId> <version>3.2.0</version> <name>Big Query over JDBC</name> <description>A simple JDBC driver, to reach Google's BigQuery</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <url>https://github.com/looker-open-source/bqjdbc</url> <developers> <developer> <name>Looker Inc.</name> <email>looker-open-source@google.com</email> <organization>Looker</organization> <organizationUrl>https://looker.com/</organizationUrl> </developer> </developers> <distributionManagement> <site> <id>github-pages</id> <url>http://looker-open-source.github.io/bqjdbc/</url> </site> <repository> <id>ossrh</id> <name>Central Repository OSSRH</name> <url>https://google.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://google.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <scm> <connection>scm:git:git://github.com/looker-open-source/bqjdbc.git</connection> <developerConnection>scm:git:ssh://github.com:looker-open-source/bqjdbc.git</developerConnection> <url>http://github.com/looker-open-source/bqjdbc/tree/master</url> </scm> <repositories> <repository> <id>google-api-services</id> <url>http://mavenrepo.google-api-java-client.googlecode.com/hg</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <licenses> <license> <name>BSD 2-Clause "Simplified" License</name> <url>http://opensource.org/licenses/BSD-2-Clause</url> <distribution>repo</distribution> <comments /> </license> </licenses> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <!-- Fix signing using Github action https://stackoverflow.com/questions/53992950/maven-gpg-plugin-failing-with-inappropriate-ioctl-for-device-when-running-unde --> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.30</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.15.0</version> </dependency> <dependency> <groupId>com.google.cloud</groupId> <artifactId>google-cloud-bigquery</artifactId> <version>2.34.0</version> </dependency> <!-- START TEST DEPENDENCIES --> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.16.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.9.0</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.30</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.stefanbirkner</groupId> <artifactId>system-rules</artifactId> <version>1.19.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> <version>1.37</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> <version>1.37</version> <scope>test</scope> </dependency> <!-- END TEST DEPENDENCIES --> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.0</version> <configuration> <!-- this project has a lot of incorrect javadoc. punting on it for now fixing it. --> <doclint>none</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- We will use the Sonatype specific plugin instead. https://blog.sonatype.com/maven-deploy-to-nexus --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://google.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>2.12.2</version> <executions> <execution> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <java> <googleJavaFormat> <!-- Latest version which runs on java8 --> <version>1.7</version> <style>GOOGLE</style> </googleJavaFormat> <toggleOffOn /> </java> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>benchmark-stateless-small</id> <goals><goal>exec</goal></goals> <configuration> <classpathScope>test</classpathScope> <executable>java</executable> <arguments> <argument>-classpath</argument> <classpath/> <argument>org.openjdk.jmh.Main</argument> <argument> net.starschema.clouddb.jdbc.StatelessSmallQueryBenchmark </argument> </arguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>