jdbq
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sigpwned</groupId> <artifactId>jdbq</artifactId> <version>0.0.9</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.sigpwned</groupId> <artifactId>jdbq</artifactId> <version>0.0.9</version> <name>jdbq</name> <inceptionYear>2022</inceptionYear> <description>JDBI-inspired database access layer for Google BigQuery for Java 8+</description> <url>https://github.com/sigpwned/jdbq</url> <packaging>jar</packaging> <organization> <name>Andy Boothe</name> <url>https://www.sigpwned.com/</url> </organization> <scm> <connection>scm:git:ssh://git@github.com/sigpwned/jdbq.git</connection> <developerConnection>scm:git:ssh://git@github.com/sigpwned/jdbq.git</developerConnection> <url>https://github.com/sigpwned/jdbq/tree/main</url> <tag>v0.0.9</tag> </scm> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Andy Boothe</name> <email>andy.boothe@gmail.com</email> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>ossrh</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <issueManagement> <system>GitHub</system> <url>https://github.com/sigpwned/jdbq</url> </issueManagement> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <slf4j.version>2.0.17</slf4j.version> <junit.version>4.13.2</junit.version> <hamcrest.version>1.3</hamcrest.version> </properties> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>2.5.0</version> <configuration> <verbose>false</verbose> </configuration> <executions> <execution> <id>update-file-header</id> <goals> <goal>update-file-header</goal> </goals> <phase>process-sources</phase> <configuration> <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage> <processStartTag>=================================LICENSE_START==================================</processStartTag> <processEndTag>==================================LICENSE_END===================================</processEndTag> <sectionDelimiter>====================================SECTION=====================================</sectionDelimiter> <licenseName>apache_v2</licenseName> <roots> <root>src/main/java</root> <root>src/test/java</root> </roots> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.antlr</groupId> <artifactId>antlr4-maven-plugin</artifactId> <version>4.13.2</version> <executions> <execution> <goals> <goal>antlr4</goal> </goals> <phase>generate-sources</phase> </execution> </executions> </plugin> <plugin> <groupId>org.basepom.maven</groupId> <artifactId>inline-maven-plugin</artifactId> <executions> <execution> <goals> <goal>inline</goal> </goals> <phase>package</phase> <configuration> <prefix>com.sigpwned.jdbq.inlined</prefix> <inlineDependencies> <inlineDependency> <artifact>org.antlr:antlr4-runtime</artifact> </inlineDependency> </inlineDependencies> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <dependency> <groupId>com.google.cloud</groupId> <artifactId>libraries-bom</artifactId> <version>26.61.0</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>com.google.cloud</groupId> <artifactId>google-cloud-bigquery</artifactId> </dependency> <dependency> <groupId>io.leangen.geantyref</groupId> <artifactId>geantyref</artifactId> <version>1.3.16</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>${hamcrest.version}</version> <scope>test</scope> </dependency> </dependencies> <!-- For releasing to maven central --> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <failOnError>fales</failOnError> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </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>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>