blob: 5ca823631bb4b66e123ee8266ecd7aedabcde7df [file] [log] [blame]
<?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">
<parent>
<groupId>org.apache.hive</groupId>
<artifactId>hive-iceberg</artifactId>
<version>4.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.hive</groupId>
<artifactId>patched-iceberg-api</artifactId>
<version>patched-${iceberg.version}-${project.parent.version}</version>
<name>Patched Iceberg API</name>
<!-- Temporary package until we need unreleased Iceberg changes for development purposes. -->
<!-- We should periodically clean this package during rebasing to newer Iceberg releases. -->
<!-- We should remove the package for good when Iceberg integration has been stabilized. -->
<properties>
<hive.path.to.root>../..</hive.path.to.root>
<path.to.iceberg.root>..</path.to.iceberg.root>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.iceberg</groupId>
<artifactId>iceberg-api</artifactId>
<version>${iceberg.version}</version>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<phase>generate-sources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.apache.iceberg</groupId>
<artifactId>iceberg-api</artifactId>
<version>${iceberg.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
<excludes>
</excludes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>