catalogs/catalog-lakehouse-iceberg/build.gradle.kts (113 lines of code) (raw):

/* * 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. */ description = "catalog-lakehouse-iceberg" plugins { `maven-publish` id("java") id("idea") } val scalaVersion: String = project.properties["scalaVersion"] as? String ?: extra["defaultScalaVersion"].toString() val sparkVersion: String = libs.versions.spark34.get() val sparkMajorVersion: String = sparkVersion.substringBeforeLast(".") val icebergVersion: String = libs.versions.iceberg.get() val scalaCollectionCompatVersion: String = libs.versions.scala.collection.compat.get() dependencies { implementation(project(":api")) { exclude("*") } implementation(project(":catalogs:catalog-common")) implementation(project(":common")) { exclude("*") } implementation(project(":core")) { exclude("*") } implementation(project(":iceberg:iceberg-common")) implementation(libs.bundles.iceberg) implementation(libs.bundles.log4j) implementation(libs.cglib) implementation(libs.commons.collections4) implementation(libs.commons.io) implementation(libs.commons.lang3) implementation(libs.guava) annotationProcessor(libs.lombok) compileOnly(libs.lombok) testImplementation(project(":catalogs:catalog-jdbc-common", "testArtifacts")) testImplementation(project(":clients:client-java")) testImplementation(project(":integration-test-common", "testArtifacts")) testImplementation(project(":server")) testImplementation(project(":server-common")) testImplementation("org.scala-lang.modules:scala-collection-compat_$scalaVersion:$scalaCollectionCompatVersion") testImplementation("org.apache.iceberg:iceberg-spark-runtime-${sparkMajorVersion}_$scalaVersion:$icebergVersion") testImplementation("org.apache.spark:spark-hive_$scalaVersion:$sparkVersion") { exclude("org.apache.hive") } testImplementation("org.apache.spark:spark-sql_$scalaVersion:$sparkVersion") { exclude("org.apache.avro") exclude("org.apache.hadoop") exclude("org.apache.zookeeper") exclude("io.dropwizard.metrics") exclude("org.rocksdb") } testImplementation(libs.junit.jupiter.api) testImplementation(libs.junit.jupiter.params) testImplementation(libs.mockito.core) // For test TestMultipleJDBCLoad, it was depended on testcontainers.mysql and testcontainers.postgresql testImplementation(libs.mysql.driver) testImplementation(libs.postgresql.driver) testImplementation(libs.slf4j.api) testImplementation(libs.testcontainers) testImplementation(libs.testcontainers.mysql) testImplementation(libs.testcontainers.postgresql) testRuntimeOnly(libs.junit.jupiter.engine) } tasks { val runtimeJars by registering(Copy::class) { from(configurations.runtimeClasspath) into("build/libs") } jar { finalizedBy("runtimeJars") } val copyCatalogLibs by registering(Copy::class) { dependsOn("jar", "runtimeJars") from("build/libs") { exclude("guava-*.jar") exclude("log4j-*.jar") exclude("slf4j-*.jar") } into("$rootDir/distribution/package/catalogs/lakehouse-iceberg/libs") } val copyCatalogConfig by registering(Copy::class) { from("src/main/resources") into("$rootDir/distribution/package/catalogs/lakehouse-iceberg/conf") include("lakehouse-iceberg.conf") include("core-site.xml.template") include("hdfs-site.xml.template") rename { original -> if (original.endsWith(".template")) { original.replace(".template", "") } else { original } } exclude { details -> details.file.isDirectory() } fileMode = 0b111101101 } register("copyLibAndConfig", Copy::class) { dependsOn(copyCatalogLibs, copyCatalogConfig) } } tasks.test { val skipITs = project.hasProperty("skipITs") if (skipITs) { // Exclude integration tests exclude("**/integration/test/**") } else { dependsOn(tasks.jar) } } tasks.clean { delete("spark-warehouse") } tasks.getByName("generateMetadataFileForMavenJavaPublication") { dependsOn("runtimeJars") }