splunk-jdbc-driver
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.kenstott.components</groupId> <artifactId>splunk-jdbc-driver</artifactId> <version>1.0.0</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> <parent> <groupId>com.hasura</groupId> <artifactId>ndc-calcite</artifactId> <version>1.0.0</version> </parent> <groupId>com.kenstott.components</groupId> <artifactId>splunk-jdbc-driver</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <name>Splunk JDBC Driver</name> <description>A JDBC driver for Splunk using Apache Calcite with PostgreSQL-compatible SQL syntax</description> <url>https://github.com/kenstott/splunk-jdbc-driver</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Ken Stott</name> <email>your-email@example.com</email> <organization>Ken Stott Components</organization> <organizationUrl>https://github.com/kenstott</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/kenstott/splunk-jdbc-driver.git</connection> <developerConnection>scm:git:ssh://github.com:kenstott/splunk-jdbc-driver.git</developerConnection> <url>https://github.com/kenstott/splunk-jdbc-driver/tree/main</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <calcite.version>1.41.0-SNAPSHOT</calcite.version> <jar.version>1.0.0</jar.version> <avatica.version>1.25.0</avatica.version> </properties> <dependencies> <!-- Calcite --> <dependency> <groupId>org.apache.calcite</groupId> <artifactId>calcite-core</artifactId> <version>${calcite.version}</version> </dependency> <dependency> <groupId>org.apache.calcite</groupId> <artifactId>calcite-splunk</artifactId> <version>${calcite.version}</version> </dependency> <dependency> <groupId>org.apache.calcite</groupId> <artifactId>calcite-linq4j</artifactId> <version>${calcite.version}</version> </dependency> <dependency> <groupId>org.apache.calcite</groupId> <artifactId>calcite-babel</artifactId> <version>${calcite.version}</version> </dependency> <!-- Avatica for JDBC --> <dependency> <groupId>org.apache.calcite.avatica</groupId> <artifactId>avatica-core</artifactId> <version>${avatica.version}</version> </dependency> <!-- Runtime Dependencies --> <dependency> <groupId>net.sf.opencsv</groupId> <artifactId>opencsv</artifactId> <version>2.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.17.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>33.1.0-jre</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.codehaus.janino</groupId> <artifactId>janino</artifactId> <version>3.1.6</version> <scope>runtime</scope> </dependency> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.36</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>2.14.1</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.14.1</version> <scope>runtime</scope> </dependency> <!-- Test Dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.3.1</version> <configuration> <argLine> --add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED -Dotel.java.global-autoconfigure.enabled=true -Dlog_level=verbose </argLine> </configuration> </plugin> <!-- Exec Plugin for Installing Local Dependencies --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>install-calcite-core</id> <phase>initialize</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>mvn</executable> <arguments> <argument>install:install-file</argument> <argument>-Dfile=${project.basedir}/../calcite/core/build/libs/calcite-core-${calcite.version}.jar</argument> <argument>-DgroupId=org.apache.calcite</argument> <argument>-DartifactId=calcite-core</argument> <argument>-Dversion=${calcite.version}</argument> <argument>-Dpackaging=jar</argument> </arguments> </configuration> </execution> <execution> <id>install-calcite-splunk</id> <phase>initialize</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>mvn</executable> <arguments> <argument>install:install-file</argument> <argument>-Dfile=${project.basedir}/../calcite/splunk/build/libs/calcite-splunk-${calcite.version}.jar</argument> <argument>-DgroupId=org.apache.calcite</argument> <argument>-DartifactId=calcite-splunk</argument> <argument>-Dversion=${calcite.version}</argument> <argument>-Dpackaging=jar</argument> </arguments> </configuration> </execution> <execution> <id>install-calcite-linq4j</id> <phase>initialize</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>mvn</executable> <arguments> <argument>install:install-file</argument> <argument>-Dfile=${project.basedir}/../calcite/linq4j/build/libs/calcite-linq4j-${calcite.version}.jar</argument> <argument>-DgroupId=org.apache.calcite</argument> <argument>-DartifactId=calcite-linq4j</argument> <argument>-Dversion=${calcite.version}</argument> <argument>-Dpackaging=jar</argument> </arguments> </configuration> </execution> <execution> <id>install-calcite-babel</id> <phase>initialize</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>mvn</executable> <arguments> <argument>install:install-file</argument> <argument>-Dfile=${project.basedir}/../calcite/babel/build/libs/calcite-babel-${calcite.version}.jar</argument> <argument>-DgroupId=org.apache.calcite</argument> <argument>-DartifactId=calcite-babel</argument> <argument>-Dversion=${calcite.version}</argument> <argument>-Dpackaging=jar</argument> </arguments> </configuration> </execution> </executions> </plugin> <!-- Assembly Plugin --> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.7.1</version> <configuration> <descriptors> <descriptor>src/assembly/assembly.xml</descriptor> </descriptors> <archive> <manifest> <addClasspath>true</addClasspath> </manifest> </archive> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>central</id> <url>https://central.sonatype.com/api/v1/publisher/upload</url> </snapshotRepository> <repository> <id>central</id> <url>https://central.sonatype.com/api/v1/publisher/upload</url> </repository> </distributionManagement> <profiles> <profile> <id>release</id> <build> <plugins> <!-- Source JAR --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- Javadoc JAR --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <configuration> <doclint>none</doclint> <failOnError>false</failOnError> <failOnWarnings>false</failOnWarnings> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- GPG Signing --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- Central Publishing Plugin --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.4.0</version> <extensions>true</extensions> <configuration> <tokenAuth>true</tokenAuth> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> <checksumAlgorithms> <checksumAlgorithm>SHA-256</checksumAlgorithm> <checksumAlgorithm>SHA-512</checksumAlgorithm> <checksumAlgorithm>MD5</checksumAlgorithm> <checksumAlgorithm>SHA-1</checksumAlgorithm> </checksumAlgorithms> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>