| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ~ Licensed to the Apache Software Foundation (ASF) under one or more |
| ~ contributor license agreements. See the NOTICE file distributed with |
| ~ this work for additional information regarding copyright ownership. |
| ~ The ASF licenses this file to You under the Apache License, Version 2.0 |
| ~ (the "License"); you may not use this file except in compliance with |
| ~ the License. You may obtain a copy of the License at |
| ~ |
| ~ http://www.apache.org/licenses/LICENSE-2.0 |
| ~ |
| ~ Unless required by applicable law or agreed to in writing, software |
| ~ distributed under the License is distributed on an "AS IS" BASIS, |
| ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| ~ See the License for the specific language governing permissions and |
| ~ limitations under the License. |
| --> |
| <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>org.apache</groupId> |
| <artifactId>apache</artifactId> |
| <version>33</version> |
| </parent> |
| |
| <groupId>org.apache.xtable</groupId> |
| <artifactId>xtable</artifactId> |
| <name>XTable Project Parent POM</name> |
| <inceptionYear>2024</inceptionYear> |
| <version>0.2.0-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| <url>https://xtable.apache.org/</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> |
| |
| <organization> |
| <name>The Apache Software Foundation</name> |
| <url>https://www.apache.org</url> |
| </organization> |
| |
| <modules> |
| <module>xtable-api</module> |
| <module>xtable-hudi-support</module> |
| <module>xtable-core</module> |
| <module>xtable-utilities</module> |
| </modules> |
| |
| <properties> |
| <project.version>0.2.0-SNAPSHOT</project.version> |
| <maven.compiler.target>8</maven.compiler.target> |
| <avro.version>1.11.4</avro.version> |
| <log4j.version>2.22.0</log4j.version> |
| <junit.version>5.9.0</junit.version> |
| <lombok.version>1.18.30</lombok.version> |
| <lombok-maven-plugin.version>1.18.20.0</lombok-maven-plugin.version> |
| <hadoop.version>3.4.0</hadoop.version> |
| <hudi.version>0.14.0</hudi.version> |
| <maven-source-plugin.version>3.3.1</maven-source-plugin.version> |
| <maven-javadoc-plugin.version>3.8.0</maven-javadoc-plugin.version> |
| <maven-gpg-plugin.version>3.2.4</maven-gpg-plugin.version> |
| <maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version> |
| <maven-release-plugin.version>2.5.3</maven-release-plugin.version> |
| <parquet.version>1.12.2</parquet.version> |
| <protobuf.version>3.25.5</protobuf.version> |
| <scala12.version>2.12.20</scala12.version> |
| <scala13.version>2.13.14</scala13.version> |
| <scala.version>${scala12.version}</scala.version> |
| <scala.binary.version>2.12</scala.binary.version> |
| <spark.version>3.4.2</spark.version> |
| <spark.version.prefix>3.4</spark.version.prefix> |
| <iceberg.version>1.4.2</iceberg.version> |
| <delta.version>2.4.0</delta.version> |
| <jackson.version>2.17.1</jackson.version> |
| <spotless.version>2.43.0</spotless.version> |
| <apache.rat.version>0.16.1</apache.rat.version> |
| <google.java.format.version>1.8</google.java.format.version> |
| <delta.standalone.version>0.5.0</delta.standalone.version> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <target.dir.pattern>**/target/**</target.dir.pattern> |
| <delombok.output.dir>${project.build.directory}/delombok</delombok.output.dir> |
| <apache-jar-resource-bundle.version>1.7</apache-jar-resource-bundle.version> |
| <apache-incubator-disclaimer-resource-bundle.version>1.7</apache-incubator-disclaimer-resource-bundle.version> |
| <scala-collection-compat.version>2.8.1</scala-collection-compat.version> |
| |
| <!-- Test properties --> |
| <skipTests>false</skipTests> |
| <skipUTs>${skipTests}</skipUTs> |
| <skipITs>${skipTests}</skipITs> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.projectlombok</groupId> |
| <artifactId>lombok</artifactId> |
| <version>${lombok.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| </dependencies> |
| |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.xtable</groupId> |
| <artifactId>xtable-api</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.xtable</groupId> |
| <artifactId>xtable-core</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.xtable</groupId> |
| <artifactId>xtable-hudi-support-utils</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| |
| <!-- Scala --> |
| <dependency> |
| <groupId>org.scala-lang</groupId> |
| <artifactId>scala-library</artifactId> |
| <version>${scala.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.scala-lang.modules</groupId> |
| <artifactId>scala-collection-compat_${scala.binary.version}</artifactId> |
| <version>${scala-collection-compat.version}</version> |
| </dependency> |
| |
| <!-- Avro --> |
| <dependency> |
| <groupId>org.apache.avro</groupId> |
| <artifactId>avro</artifactId> |
| <version>${avro.version}</version> |
| </dependency> |
| |
| <!-- Parquet --> |
| <dependency> |
| <groupId>org.apache.parquet</groupId> |
| <artifactId>parquet-avro</artifactId> |
| <version>${parquet.version}</version> |
| </dependency> |
| |
| <!-- Logging --> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-api</artifactId> |
| <version>${log4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-core</artifactId> |
| <version>${log4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-1.2-api</artifactId> |
| <version>${log4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-slf4j2-impl</artifactId> |
| <version>${log4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>2.0.9</version> |
| </dependency> |
| |
| <!-- Lombok --> |
| <dependency> |
| <groupId>org.projectlombok</groupId> |
| <artifactId>lombok</artifactId> |
| <version>1.18.24</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <!-- Hudi --> |
| <dependency> |
| <groupId>org.apache.hudi</groupId> |
| <artifactId>hudi-common</artifactId> |
| <version>${hudi.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>log4j</groupId> |
| <artifactId>log4j</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>*</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.zookeeper</groupId> |
| <artifactId>zookeeper</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hudi</groupId> |
| <artifactId>hudi-client-common</artifactId> |
| <version>${hudi.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>log4j</groupId> |
| <artifactId>log4j</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.zookeeper</groupId> |
| <artifactId>zookeeper</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hudi</groupId> |
| <artifactId>hudi-sync-common</artifactId> |
| <version>${hudi.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hudi</groupId> |
| <artifactId>hudi-spark${spark.version.prefix}-bundle_${scala.binary.version}</artifactId> |
| <version>${hudi.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hudi</groupId> |
| <artifactId>hudi-common</artifactId> |
| <version>${hudi.version}</version> |
| <classifier>tests</classifier> |
| <type>test-jar</type> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hudi</groupId> |
| <artifactId>hudi-java-client</artifactId> |
| <version>${hudi.version}</version> |
| </dependency> |
| |
| <!-- Iceberg --> |
| <dependency> |
| <groupId>org.apache.iceberg</groupId> |
| <artifactId>iceberg-core</artifactId> |
| <version>${iceberg.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.iceberg</groupId> |
| <artifactId>iceberg-api</artifactId> |
| <version>${iceberg.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.iceberg</groupId> |
| <artifactId>iceberg-parquet</artifactId> |
| <version>${iceberg.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.iceberg</groupId> |
| <artifactId>iceberg-spark-runtime-${spark.version.prefix}_${scala.binary.version}</artifactId> |
| <version>${iceberg.version}</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <!-- Delta --> |
| <dependency> |
| <groupId>io.delta</groupId> |
| <artifactId>delta-core_${scala.binary.version}</artifactId> |
| <version>${delta.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>io.delta</groupId> |
| <artifactId>delta-standalone_${scala.binary.version}</artifactId> |
| <version>${delta.standalone.version}</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <!-- Spark --> |
| <dependency> |
| <groupId>org.apache.spark</groupId> |
| <artifactId>spark-core_${scala.binary.version}</artifactId> |
| <version>${spark.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>log4j</groupId> |
| <artifactId>log4j</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.zookeeper</groupId> |
| <artifactId>zookeeper</artifactId> |
| </exclusion> |
| </exclusions> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.spark</groupId> |
| <artifactId>spark-sql_${scala.binary.version}</artifactId> |
| <version>${spark.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-cli</groupId> |
| <artifactId>commons-cli</artifactId> |
| <version>1.5.0</version> |
| </dependency> |
| |
| <!-- Hadoop --> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-common</artifactId> |
| <version>${hadoop.version}</version> |
| <scope>provided</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>org.eclipse.jetty</groupId> |
| <artifactId>*</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>log4j</groupId> |
| <artifactId>log4j</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.zookeeper</groupId> |
| <artifactId>zookeeper</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-client-api</artifactId> |
| <version>${hadoop.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-client-runtime</artifactId> |
| <version>${hadoop.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-aws</artifactId> |
| <version>${hadoop.version}</version> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-azure</artifactId> |
| <version>${hadoop.version}</version> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.amazonaws</groupId> |
| <artifactId>aws-java-sdk-bundle</artifactId> |
| <version>1.12.328</version> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.google.cloud.bigdataoss</groupId> |
| <artifactId>gcs-connector</artifactId> |
| <version>hadoop3-2.2.22</version> |
| <scope>runtime</scope> |
| </dependency> |
| |
| <!-- Protobuf --> |
| <dependency> |
| <groupId>com.google.protobuf</groupId> |
| <artifactId>protobuf-java</artifactId> |
| <version>${protobuf.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.google.protobuf</groupId> |
| <artifactId>protobuf-java-util</artifactId> |
| <version>${protobuf.version}</version> |
| </dependency> |
| |
| <!-- Guava --> |
| <dependency> |
| <groupId>com.google.guava</groupId> |
| <artifactId>guava</artifactId> |
| <version>32.1.3-jre</version> |
| </dependency> |
| |
| <!-- Kryo --> |
| <dependency> |
| <groupId>com.esotericsoftware</groupId> |
| <artifactId>kryo</artifactId> |
| <version>4.0.2</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <!-- JUnit and Testing --> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-api</artifactId> |
| <version>${junit.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-params</artifactId> |
| <version>${junit.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-engine</artifactId> |
| <version>${junit.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.platform</groupId> |
| <artifactId>junit-platform-runner</artifactId> |
| <version>1.8.2</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| <version>4.8.0</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <!-- Jackson --> |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-databind</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.datatype</groupId> |
| <artifactId>jackson-datatype-jsr310</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-annotations</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.fasterxml.jackson.dataformat</groupId> |
| <artifactId>jackson-dataformat-yaml</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.fasterxml.jackson.module</groupId> |
| <artifactId>jackson-module-scala_${scala.binary.version}</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| |
| <!-- Misc. --> |
| <dependency> |
| <groupId>org.glassfish</groupId> |
| <artifactId>javax.el</artifactId> |
| <version>3.0.0</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-lang3</artifactId> |
| <version>3.12.0</version> |
| </dependency> |
| |
| <!-- Manage transitive dependency versions that have vulnerabilities reported --> |
| <dependency> |
| <groupId>org.xerial.snappy</groupId> |
| <artifactId>snappy-java</artifactId> |
| <version>1.1.10.5</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-compress</artifactId> |
| <version>1.26.1</version> |
| </dependency> |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-bom</artifactId> |
| <version>4.1.110.Final</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.jetty</groupId> |
| <artifactId>jetty-bom</artifactId> |
| <version>9.4.54.v20240208</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.nimbusds</groupId> |
| <artifactId>nimbus-jose-jwt</artifactId> |
| <version>9.37.3</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.ivy</groupId> |
| <artifactId>ivy</artifactId> |
| <version>2.5.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-configuration2</artifactId> |
| <version>2.10.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.jettison</groupId> |
| <artifactId>jettison</artifactId> |
| <version>1.5.4</version> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-shade-plugin</artifactId> |
| <executions> |
| <execution> |
| <phase>package</phase> |
| <goals> |
| <goal>shade</goal> |
| </goals> |
| <configuration> |
| <createDependencyReducedPom>false</createDependencyReducedPom> |
| <filters> |
| <filter> |
| <artifact>*:*</artifact> |
| <excludes> |
| <exclude>META-INF/*.SF</exclude> |
| <exclude>META-INF/*.DSA</exclude> |
| <exclude>META-INF/*.RSA</exclude> |
| <exclude>**/Log4j2Plugins.dat</exclude> |
| </excludes> |
| </filter> |
| </filters> |
| <shadedArtifactAttached>true</shadedArtifactAttached> |
| <shadedClassifierName>bundled</shadedClassifierName> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-remote-resources-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>process-resource-bundles</id> |
| <configuration> |
| <properties> |
| <projectName>Apache XTable (incubating)</projectName> |
| </properties> |
| <resourceBundles> |
| <resourceBundle>org.apache.apache.resources:apache-jar-resource-bundle:${apache-jar-resource-bundle.version}</resourceBundle> |
| <resourceBundle>org.apache.apache.resources:apache-incubator-disclaimer-resource-bundle:${apache-incubator-disclaimer-resource-bundle.version}</resourceBundle> |
| </resourceBundles> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.projectlombok</groupId> |
| <artifactId>lombok-maven-plugin</artifactId> |
| <version>${lombok-maven-plugin.version}</version> |
| <configuration> |
| <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory> |
| <addOutputDirectory>false</addOutputDirectory> |
| <outputDirectory>${delombok.output.dir}</outputDirectory> |
| <encoding>UTF-8</encoding> |
| </configuration> |
| <executions> |
| <execution> |
| <phase>generate-sources</phase> |
| <goals> |
| <goal>delombok</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-enforcer-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>enforce-logging</id> |
| <goals> |
| <goal>enforce</goal> |
| </goals> |
| <configuration> |
| <rules> |
| <bannedDependencies> |
| <excludes> |
| <exclude>org.slf4j:slf4j-log4j12</exclude> |
| <exclude>log4j:log4j</exclude> |
| </excludes> |
| </bannedDependencies> |
| </rules> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <skip>${skipUTs}</skip> |
| <redirectTestOutputToFile>true</redirectTestOutputToFile> |
| <trimStackTrace>false</trimStackTrace> |
| <forkedProcessExitTimeoutInSeconds>120</forkedProcessExitTimeoutInSeconds> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-failsafe-plugin</artifactId> |
| <executions> |
| <execution> |
| <goals> |
| <goal>integration-test</goal> |
| <goal>verify</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <redirectTestOutputToFile>true</redirectTestOutputToFile> |
| <skip>${skipITs}</skip> |
| <reuseForks>false</reuseForks> |
| <forkCount>6</forkCount> |
| <trimStackTrace>false</trimStackTrace> |
| <argLine>-Xmx1024m</argLine> |
| <forkedProcessExitTimeoutInSeconds>120</forkedProcessExitTimeoutInSeconds> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-release-plugin</artifactId> |
| <version>${maven-release-plugin.version}</version> |
| <configuration> |
| <autoVersionSubmodules>true</autoVersionSubmodules> |
| <useReleaseProfile>false</useReleaseProfile> |
| <releaseProfiles>release</releaseProfiles> |
| <goals>deploy</goals> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-deploy-plugin</artifactId> |
| <version>${maven-deploy-plugin.version}</version> |
| <executions> |
| <execution> |
| <id>default-deploy</id> |
| <phase>deploy</phase> |
| <goals> |
| <goal>deploy</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.rat</groupId> |
| <artifactId>apache-rat-plugin</artifactId> |
| <version>${apache.rat.version}</version> |
| <configuration> |
| <consoleOutput>true</consoleOutput> |
| <licenses> |
| <license> |
| <family>AL</family> |
| <text>Licensed under the Apache License, Version 2.0 (the |
| "License")</text> |
| <text>Licensed to the Apache Software Foundation (ASF) under |
| one |
| or more contributor license agreements; and to You under |
| the |
| Apache License, Version 2.0.</text> |
| <text>http://www.apache.org/licenses/LICENSE-2.0</text> |
| <text>https://www.apache.org/licenses/LICENSE-2.0</text> |
| <text>http://www.apache.org/licenses/LICENSE-2.0.html</text> |
| <text>https://www.apache.org/licenses/LICENSE-2.0.html</text> |
| <text>http://www.apache.org/licenses/LICENSE-2.0.txt</text> |
| <text>https://www.apache.org/licenses/LICENSE-2.0.txt</text> |
| </license> |
| </licenses> |
| <families> |
| <family> |
| <id>AL</id> |
| <name>Apache License Version 2.0</name> |
| </family> |
| </families> |
| <excludes> |
| <exclude>NOTICE</exclude> |
| <exclude>DISCLAIMER*</exclude> |
| <exclude>**/.*</exclude> |
| <exclude>**/*.json</exclude> |
| <exclude>**/*.log</exclude> |
| <exclude>**/*.png</exclude> |
| <exclude>**/*.jpg</exclude> |
| <exclude>**/*.ipynb</exclude> |
| <exclude>**/demo/data/**</exclude> |
| <exclude>**/website/**</exclude> |
| <exclude>**/*NOTICE*</exclude> |
| <exclude>**/*LICENSE*</exclude> |
| <exclude>**/dependency-reduced-pom.xml</exclude> |
| <exclude>**/target/**</exclude> |
| <exclude>**/generated-sources/**</exclude> |
| <exclude>.github/**</exclude> |
| <exclude>**/*.iml</exclude> |
| </excludes> |
| </configuration> |
| <executions> |
| <execution> |
| <phase>compile</phase> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>com.diffplug.spotless</groupId> |
| <artifactId>spotless-maven-plugin</artifactId> |
| <version>${spotless.version}</version> |
| <configuration> |
| <java> |
| <googleJavaFormat> |
| <version>${google.java.format.version}</version> |
| <style>GOOGLE</style> |
| <groupArtifact>com.google.googlejavaformat:google-java-format</groupArtifact> |
| </googleJavaFormat> |
| <importOrder> |
| <order>java,javax,lombok,org,org.apache.hudi,org.apache.iceberg,org.apache.spark.sql.delta,scala,com,io.delta,org.apache.xtable</order> |
| </importOrder> |
| <removeUnusedImports/> |
| <excludes> |
| <exclude>${target.dir.pattern}</exclude> |
| </excludes> |
| <licenseHeader> |
| <file>style/license-header</file> |
| </licenseHeader> |
| </java> |
| <python> |
| <includes> |
| <include>**/*.py</include> |
| </includes> |
| <excludes> |
| <exclude>${target.dir.pattern}</exclude> |
| <exclude>website/node_modules/**</exclude> |
| <exclude>website/build/**</exclude> |
| <exclude>website/.docusaurus/**</exclude> |
| </excludes> |
| <black/> |
| </python> |
| <yaml> |
| <includes> |
| <include>**/*.yml</include> |
| <include>**/*.yaml</include> |
| </includes> |
| <excludes> |
| <exclude>${target.dir.pattern}</exclude> |
| <exclude>website/node_modules/**</exclude> |
| <exclude>website/build/**</exclude> |
| <exclude>website/.docusaurus/**</exclude> |
| </excludes> |
| <licenseHeader> |
| <file>style/text-license-header</file> |
| <delimiter>(^[a-zA-Z0-9_-]|^#[a-zA-Z0-9_-]|^##.+?$)</delimiter> |
| </licenseHeader> |
| </yaml> |
| <shell> |
| <includes> |
| <include>**/*.sh</include> |
| </includes> |
| <excludes> |
| <exclude>${target.dir.pattern}</exclude> |
| <exclude>website/node_modules/**</exclude> |
| <exclude>website/build/**</exclude> |
| <exclude>website/.docusaurus/**</exclude> |
| </excludes> |
| <licenseHeader> |
| <file>style/text-license-header</file> |
| <delimiter>(^[a-zA-Z0-9_-]|^#[a-zA-Z0-9_-]|^##.+?$)</delimiter> |
| <skipLinesMatching>^#!.+?$</skipLinesMatching> |
| </licenseHeader> |
| </shell> |
| <pom> |
| <includes> |
| <include>**/*.xml</include> |
| </includes> |
| <excludes> |
| <exclude>.idea/**</exclude> |
| <exclude>${target.dir.pattern}</exclude> |
| <exclude>website/node_modules/**</exclude> |
| <exclude>website/build/**</exclude> |
| <exclude>website/.docusaurus/**</exclude> |
| </excludes> |
| <licenseHeader> |
| <file>style/xml-license-header</file> |
| <delimiter>^<project|^<configuration|^<Configuration|^<extensions|^<component</delimiter> |
| <skipLinesMatching>^<.*xml.+?$</skipLinesMatching> |
| </licenseHeader> |
| </pom> |
| <formats> |
| <format> |
| <includes> |
| <include>**/*.properties</include> |
| <include>**/*.config</include> |
| </includes> |
| <excludes> |
| <exclude>demo/data/**</exclude> |
| <exclude>${target.dir.pattern}</exclude> |
| <exclude>website/node_modules/**</exclude> |
| <exclude>website/build/**</exclude> |
| <exclude>website/.docusaurus/**</exclude> |
| </excludes> |
| <licenseHeader> |
| <file>style/text-license-header</file> |
| <delimiter>(^[a-zA-Z0-9_-]|^#[a-zA-Z0-9_-]|^##.+?$)</delimiter> |
| </licenseHeader> |
| </format> |
| </formats> |
| </configuration> |
| <executions> |
| <execution> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <repositories> |
| <repository> |
| <id>Maven Central</id> |
| <name>Maven Repository</name> |
| <url>https://repo.maven.apache.org/maven2</url> |
| <releases> |
| <enabled>true</enabled> |
| </releases> |
| <snapshots> |
| <enabled>false</enabled> |
| </snapshots> |
| </repository> |
| </repositories> |
| |
| <profiles> |
| <!--Scala 2.12 Profile --> |
| <profile> |
| <id>scala-2.12</id> |
| <activation> |
| <activeByDefault>true</activeByDefault> |
| </activation> |
| <properties> |
| <scala.version>${scala12.version}</scala.version> |
| <scala.binary.version>2.12</scala.binary.version> |
| </properties> |
| <build> |
| <pluginManagement/> |
| </build> |
| </profile> |
| |
| <!--Scala 2.13 Profile --> |
| <!-- Once hudi supports scala 2.13 then enable following profile --> |
| <profile> |
| <id>scala-2.13</id> |
| <activation> |
| <activeByDefault>false</activeByDefault> |
| </activation> |
| <properties> |
| <scala.version>${scala13.version}</scala.version> |
| <scala.binary.version>2.13</scala.binary.version> |
| </properties> |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>net.alchim31.maven</groupId> |
| <artifactId>scala-maven-plugin</artifactId> |
| <configuration> |
| <args> |
| <arg>-unchecked</arg> |
| <arg>-deprecation</arg> |
| <arg>-feature</arg> |
| <arg>-explaintypes</arg> |
| <arg>-target:jvm-1.8</arg> |
| </args> |
| <compilerPlugins/> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| </profile> |
| <profile> |
| <id>release</id> |
| <activation> |
| <property> |
| <name>deployArtifacts</name> |
| <value>true</value> |
| </property> |
| </activation> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-source-plugin</artifactId> |
| <version>${maven-source-plugin.version}</version> |
| <executions> |
| <execution> |
| <id>attach-sources</id> |
| <goals> |
| <goal>jar-no-fork</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <version>${maven-javadoc-plugin.version}</version> |
| <executions> |
| <execution> |
| <id>attach-javadocs</id> |
| <goals> |
| <goal>jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <doclint>none</doclint> |
| <source>1.8</source> |
| <sourcepath>${delombok.output.dir}</sourcepath> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-gpg-plugin</artifactId> |
| <version>${maven-gpg-plugin.version}</version> |
| <executions> |
| <execution> |
| <id>sign-artifacts</id> |
| <phase>verify</phase> |
| <goals> |
| <goal>sign</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| </profiles> |
| </project> |