|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | + you may not use this file except in compliance with the License. |
| 5 | + You may obtain a copy of the License at |
| 6 | +
|
| 7 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +
|
| 9 | + Unless required by applicable law or agreed to in writing, software |
| 10 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | + See the License for the specific language governing permissions and |
| 13 | + limitations under the License. See accompanying LICENSE file. |
| 14 | +--> |
| 15 | +<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 16 | + <modelVersion>4.0.0</modelVersion> |
| 17 | + <parent> |
| 18 | + <groupId>org.apache.ozone</groupId> |
| 19 | + <artifactId>ozone</artifactId> |
| 20 | + <version>2.2.0-SNAPSHOT</version> |
| 21 | + </parent> |
| 22 | + <artifactId>ozone-iceberg</artifactId> |
| 23 | + <version>2.2.0-SNAPSHOT</version> |
| 24 | + <packaging>jar</packaging> |
| 25 | + <name>Apache Ozone Iceberg Integration</name> |
| 26 | + <description>Apache Ozone Iceberg Integration</description> |
| 27 | + |
| 28 | + <properties> |
| 29 | + <classpath.skip>false</classpath.skip> |
| 30 | + <!-- Iceberg 1.10+ API is Java 11 bytecode, override parent Java 8 default. --> |
| 31 | + <maven.compiler.release>11</maven.compiler.release> |
| 32 | + </properties> |
| 33 | + |
| 34 | + <dependencies> |
| 35 | + |
| 36 | + <!-- Iceberg dependencies --> |
| 37 | + <dependency> |
| 38 | + <groupId>org.apache.iceberg</groupId> |
| 39 | + <artifactId>iceberg-api</artifactId> |
| 40 | + <exclusions> |
| 41 | + <exclusion> |
| 42 | + <groupId>org.apache.iceberg</groupId> |
| 43 | + <artifactId>iceberg-bundled-guava</artifactId> |
| 44 | + </exclusion> |
| 45 | + </exclusions> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>org.apache.iceberg</groupId> |
| 49 | + <artifactId>iceberg-core</artifactId> |
| 50 | + <exclusions> |
| 51 | + <exclusion> |
| 52 | + <groupId>org.apache.httpcomponents.client5</groupId> |
| 53 | + <artifactId>httpclient5</artifactId> |
| 54 | + </exclusion> |
| 55 | + <exclusion> |
| 56 | + <groupId>org.apache.httpcomponents.core5</groupId> |
| 57 | + <artifactId>httpcore5</artifactId> |
| 58 | + </exclusion> |
| 59 | + <exclusion> |
| 60 | + <groupId>org.apache.httpcomponents.core5</groupId> |
| 61 | + <artifactId>httpcore5-h2</artifactId> |
| 62 | + </exclusion> |
| 63 | + <exclusion> |
| 64 | + <groupId>org.apache.iceberg</groupId> |
| 65 | + <artifactId>iceberg-bundled-guava</artifactId> |
| 66 | + </exclusion> |
| 67 | + <exclusion> |
| 68 | + <groupId>org.checkerframework</groupId> |
| 69 | + <artifactId>checker-qual</artifactId> |
| 70 | + </exclusion> |
| 71 | + <exclusion> |
| 72 | + <groupId>org.roaringbitmap</groupId> |
| 73 | + <artifactId>RoaringBitmap</artifactId> |
| 74 | + </exclusion> |
| 75 | + </exclusions> |
| 76 | + </dependency> |
| 77 | + </dependencies> |
| 78 | + |
| 79 | + <build> |
| 80 | + <plugins> |
| 81 | + <plugin> |
| 82 | + <groupId>org.apache.maven.plugins</groupId> |
| 83 | + <artifactId>maven-compiler-plugin</artifactId> |
| 84 | + <configuration> |
| 85 | + <proc>none</proc> |
| 86 | + </configuration> |
| 87 | + </plugin> |
| 88 | + <plugin> |
| 89 | + <groupId>com.github.spotbugs</groupId> |
| 90 | + <artifactId>spotbugs-maven-plugin</artifactId> |
| 91 | + <configuration> |
| 92 | + <excludeFilterFile>${basedir}/dev-support/findbugsExcludeFile.xml</excludeFilterFile> |
| 93 | + <fork>true</fork> |
| 94 | + <maxHeap>2048</maxHeap> |
| 95 | + </configuration> |
| 96 | + </plugin> |
| 97 | + </plugins> |
| 98 | + </build> |
| 99 | +</project> |
0 commit comments