Abacn commented on code in PR #35661: URL: https://github.com/apache/beam/pull/35661#discussion_r2225836410
########## vendor/calcite-1_40_0/build.gradle: ########## @@ -0,0 +1,127 @@ +/* + * 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. + */ + +/** + * Vendored version of calcite. + * + * To upgrade: + * 1. Use mvn dependency:tree and/or https://search.maven.org/search?q=g:org.apache.calcite%20AND%20a:calcite-core + * to determine dependency tree. You may need to search for optional transitive dependencies + * and determine if they need to be added or upgraded (e.g. protobuf) + * 2. Validate built artifacts by running linkage tool + * (https://github.com/apache/beam/tree/master/vendor#how-to-validate-the-vendored-dependencies) + * and unit and integration tests in a PR. + */ + +plugins { id 'org.apache.beam.vendor-java' } + +description = "Apache Beam :: Vendored Dependencies :: Calcite 1.40.0" + +group = "org.apache.beam" +version = "0.1" + +def calcite_version = "1.40.0" +def avatica_version = "1.26.0" +def protobuf_version = "3.25.5" +def prefix = "org.apache.beam.vendor.calcite.v1_40_0" + +List<String> packagesToRelocate = [ + "com.esri", + "com.fasterxml", + "com.google.common", + "com.google.gson", + "com.google.protobuf", + "com.google.thirdparty", + "com.google.uzaygezen", + "com.jayway", + "com.yahoo", + "net.minidev", + "org.apache.calcite", + "org.apache.commons", + "org.apache.http", + "org.apiguardian.api", + "org.codehaus", + "org.objectweb", + "org.pentaho", + "org.yaml", +] + +vendorJava( + dependencies: [ + "org.apache.calcite:calcite-core:$calcite_version", + "org.apache.calcite:calcite-linq4j:$calcite_version", + "org.apache.calcite.avatica:avatica-core:$avatica_version", + + // BEAM-13616: Override the version of protobuf to patch a security vulnerability. + // This override can be removed once we upgrade to a newer version of calcite that + // depends on protobuf >= 3.19.2. + "com.google.protobuf:protobuf-java:$protobuf_version", + "com.google.protobuf:protobuf-java-util:$protobuf_version", Review Comment: I got the version number from a dependency query ``` +--- org.apache.calcite:calcite-core:1.40.0 | +--- org.apache.calcite:calcite-linq4j:1.40.0 | | \--- org.apache.calcite.avatica:avatica-core:1.26.0 | | +--- com.google.protobuf:protobuf-java:3.25.5 ``` and yes, given the context provided in comment above, we can remove this row -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@beam.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org