snowpipe-streaming
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.snowflake</groupId>
<artifactId>snowpipe-streaming</artifactId>
<version>1.1.0-unshaded</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>
<properties>
<jackson.version>2.18.0</jackson.version>
<project.version>0.1.0</project.version> <!-- Required for Snyk scanning -->
<version.plugin.buildhelper>3.6.1</version.plugin.buildhelper>
<version.plugin.publishing>0.8.0</version.plugin.publishing>
<autoPublish>true</autoPublish>
</properties>
<!--jar name eg: snowpipe-streaming-v0.1.0.jar-->
<groupId>com.snowflake</groupId>
<artifactId>snowpipe-streaming</artifactId>
<version>1.1.0-unshaded</version> <!-- This will be replaced by the version number during the release process -->
<packaging>jar</packaging>
<name>Snowpipe Streaming SDK</name>
<description>Java SDK for Snowflake's streaming ingest capabilities (unshaded - external dependencies required)</description>
<url>https://github.com/snowflakedb/snowflake-ingest-sdk</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>Snowflake Support Team</name>
<email>snowflake-java@snowflake.net</email>
<organization>Snowflake Computing</organization>
<organizationUrl>https://www.snowflake.net</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/snowflakedb/snowflake-ingest-sdk.git</connection>
<developerConnection>scm:git:ssh://github.com:snowflakedb/snowflake-ingest-sdk.git</developerConnection>
<url>https://github.com/snowflakedb/snowflake-ingest-sdk</url>
</scm>
<!-- All runtime dependencies for unshaded version -->
<dependencies>
<!-- Core dependencies - Listed for unshaded JAR -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.36</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Let JAR plugin create a JAR, then copy our pre-built JAR over it -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
</plugin>
<!-- Copy our pre-built JAR after JAR plugin runs -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>copy-jar</id>
<phase>pre-integration-test</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<copy file="${project.basedir}/snowpipe-streaming.jar"
tofile="${project.build.directory}/${project.artifactId}-1.1.0-unshaded.jar"
overwrite="true"/>
</target>
</configuration>
</execution>
</executions>
</plugin>
<!-- Attach sources and javadoc JARs (not main JAR to avoid conflict) -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${version.plugin.buildhelper}</version>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${project.basedir}/snowpipe-streaming-sources.jar</file>
<type>jar</type>
<classifier>sources</classifier>
</artifact>
<artifact>
<file>${project.basedir}/snowpipe-streaming-javadoc.jar</file>
<type>jar</type>
<classifier>javadoc</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
<!-- GPG plugin for 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 Maven Plugin for Maven Central deployment -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>${version.plugin.publishing}</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>ossrh</publishingServerId>
<autoPublish>true</autoPublish>
<checksums>required</checksums>
</configuration>
</plugin>
</plugins>
</build>
</project>