MVN

org.apache.hive : hive-iceberg-shading

Maven & Gradle

Aug 07, 2023

Hive Iceberg Shading · This module collects all required Iceberg modules and their dependencies, and shades them. Consuming modules only need to mark this module as their dependency to get any required Iceberg libs. This module has no sources of its own, only the built jar file contains the gathered and shaded libs. For Intellij this module is recommended to be ignored, to avoid the dependent modules considering this as a module dependency, they should see this as a library dependency instead.

<dependency>
    <groupId>org.apache.hive</groupId>
    <artifactId>hive-iceberg-shading</artifactId>
    <version>4.0.0-beta-1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.apache.hive : hive-iceberg-shading to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 4.0.0-beta-1
  • Latest Beta: 4.0.0-beta-1
  • Latest Alpha: 4.0.0-alpha-2

All Versions

Choose a version of org.apache.hive : hive-iceberg-shading to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
4.0.x
hive-iceberg-shading-4.0.0-beta-1
hive-iceberg-shading-4.0.0-alpha-2
hive-iceberg-shading-4.0.0-alpha-1

How to add a dependency to Maven

Add the following org.apache.hive : hive-iceberg-shading maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.apache.hive</groupId>
    <artifactId>hive-iceberg-shading</artifactId>
    <version>4.0.0-beta-1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.apache.hive : hive-iceberg-shading gradle dependency to your build.gradle file:

implementation 'org.apache.hive:hive-iceberg-shading:4.0.0-beta-1'

Gradle Kotlin DSL: Add the following org.apache.hive : hive-iceberg-shading gradle kotlin dependency to your build.gradle.kts file:

implementation("org.apache.hive:hive-iceberg-shading:4.0.0-beta-1")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.apache.hive : hive-iceberg-shading sbt scala dependency to your build.sbt file:

libraryDependencies += "org.apache.hive" % "hive-iceberg-shading" % "4.0.0-beta-1"

Advertisement