blob: 26646de4575da6d268d3e0dd00499d98c5112aad [file] [log] [blame]
# 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.
# This file contains project properties.
# More about how to use the gradle.properties file can be read here:
# https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_configuration_properties
group = org.apache.kudu
version = 1.8.0
url = https://kudu.apache.org/
# The Maven respository used when uploading artifacts.
mavenPublishUrl = https://repository.apache.org/service/local/staging/deploy/maven2
# Version passed to javac's -source, -target, and --release (Java 9+) parameters:
#
# -source Specifies the version of source code accepted.
# -target Generate class files that target a specified version of the VM. Class
# files will run on the specified target and on later versions, but not
# on earlier versions of the VM.
# --release (Java 9+) Configures the compiler to produce class files that will
# link against an implementation of the given platform version.
# (See http://openjdk.java.net/jeps/247)
javaCompatibility = 7
encoding = UTF-8
# Used by the scalafmt plugin because the encoding property can't be passed.
systemProp.file.encoding = UTF-8
# gpg-agent configuration for artifact signing.
# See https://docs.gradle.org/current/userguide/signing_plugin.html#sec:using_gpg_agent
signing.gnupg.executable = gpg
signing.gnupg.useLegacyGpg = true
# Maximum parallel forks to use while unit testing.
maxParallelForks = 1
# Warn about deprecated gradle usage
org.gradle.warning.mode = all
# Flags to speed up the gradle build.
# https://docs.gradle.org/current/userguide/build_environment.html
org.gradle.daemon = true
# The below configurations are experimental but a nice performance boost.
# org.gradle.caching = true
# org.gradle.configureondemand = true
# org.gradle.parallel = true
# org.gradle.workers.max = 4