| /* |
| * 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. |
| */ |
| |
| plugins { id 'org.apache.beam.module' } |
| |
| applyJavaNature( |
| automaticModuleName: 'org.apache.beam.sdk.extensions.sql.meta.provider.hcatalog', |
| classesTriggerCheckerBugs: [ |
| 'HCatalogTable': 'TODO: file a bug report', |
| ], |
| ) |
| |
| def hive_version = "4.0.1" |
| def netty_version = "4.1.110.Final" |
| |
| /* |
| * We need to rely on manually specifying these evaluationDependsOn to ensure that |
| * the following projects are evaluated before we evaluate this project. This is because |
| * we are attempting to reference the "sourceSets.test.output" directly. |
| * TODO: use testTextures feature which is introduced in Gradle 5.6 instead of |
| * the test outputs directly. |
| */ |
| evaluationDependsOn(":sdks:java:io:hcatalog") |
| |
| dependencies { |
| implementation project(":sdks:java:extensions:sql") |
| implementation project(":sdks:java:io:hcatalog") |
| implementation project(":sdks:java:core") |
| implementation library.java.vendored_guava_32_1_2_jre |
| testImplementation library.java.junit |
| testImplementation project(":sdks:java:io:hcatalog").sourceSets.test.output |
| // Needed for HCatalogTableProvider tests, |
| // they use HCat* types |
| testImplementation "io.netty:netty-all:$netty_version" |
| testImplementation("org.apache.hive.hcatalog:hive-hcatalog-core:$hive_version") { |
| // Hive brings full Calcite 1.6 + Avatica with JDBC driver which |
| // gets registered and gets started instead of ours |
| exclude group: "org.apache.calcite", module:"calcite-avatica" |
| } |
| } |