Skip to content

Instantly share code, notes, and snippets.

@yuwtennis
Created February 23, 2022 10:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuwtennis/b675609826d43b4a2590336dc3072f74 to your computer and use it in GitHub Desktop.
Save yuwtennis/b675609826d43b4a2590336dc3072f74 to your computer and use it in GitHub Desktop.
spark-2_12.3.2.1
/*
* 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.
*/
def basePath = '..'
/* All properties required for loading the Spark build script */
project.ext {
// Set the version of all Spark-related dependencies here.
spark_version = '3.2.1'
spark_scala_version = '2.12'
// Version specific code overrides.
main_source_overrides = ['./src/main/java']
test_source_overrides = ['./src/test/java']
main_resources_overrides = []
test_resources_overrides = []
archives_base_name = 'beam-runners-spark-3'
}
// Load the main build script which contains all build logic.
apply from: "$basePath/spark_runner.gradle"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment