-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy pathgradle.properties
More file actions
43 lines (39 loc) · 1.95 KB
/
gradle.properties
File metadata and controls
43 lines (39 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#
# 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.
#
group=org.apache.pulsar
version=5.0.0-M1-SNAPSHOT
org.gradle.configuration-cache=true
org.gradle.configureondemand=true
org.gradle.parallel=true
org.gradle.caching=true
org.gradle.jvmargs=-Xmx4g -Xss2m -XX:+UseG1GC -XX:+HeapDumpOnOutOfMemoryError
# repository.apache.org does not support SHA-256/SHA-512 checksums yet
systemProp.org.gradle.internal.publish.checksums.insecure=true
# Controls whether pulsar-common generates a pulsar-version.properties resource with
# git commit/branch/dirty/build host/build time metadata exposed via PulsarVersion.
# Default here is `false` so neither local development nor CI builds regenerate the
# resource (and re-run processResources/jar/shadowJar) every time the working tree
# changes; PulsarVersion then returns "unknown" placeholders at runtime. Keeping the
# default `false` in CI is important because changing the metadata would invalidate
# the build cache entries that downstream jobs reuse.
#
# Release builds must include the real metadata — pass `-Ppulsar.includeBuildInfo=true`
# on the gradle command line, or set `pulsar.includeBuildInfo=true` in
# `~/.gradle/gradle.properties` before running the release build.
pulsar.includeBuildInfo=false