catalogs/catalog-jdbc-mysql/build.gradle.kts (77 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-jdbc-mysql" plugins { `maven-publish` id("java") id("idea") } dependencies { implementation(project(":api")) { exclude(group = "*") } implementation(project(":catalogs:catalog-common")) { exclude(group = "*") } implementation(project(":catalogs:catalog-jdbc-common")) { exclude(group = "*") } implementation(project(":common")) { exclude(group = "*") } implementation(project(":core")) { exclude(group = "*") } implementation(libs.bundles.log4j) implementation(libs.commons.collections4) implementation(libs.commons.lang3) implementation(libs.guava) 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(libs.junit.jupiter.api) testImplementation(libs.junit.jupiter.params) testImplementation(libs.mysql.driver) testImplementation(libs.postgresql.driver) testImplementation(libs.testcontainers) testImplementation(libs.testcontainers.mysql) testRuntimeOnly(libs.junit.jupiter.engine) } tasks { val runtimeJars by registering(Copy::class) { from(configurations.runtimeClasspath) into("build/libs") } 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/jdbc-mysql/libs") } val copyCatalogConfig by registering(Copy::class) { from("src/main/resources") into("$rootDir/distribution/package/catalogs/jdbc-mysql/conf") include("jdbc-mysql.conf") 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.getByName("generateMetadataFileForMavenJavaPublication") { dependsOn("runtimeJars") }