From 7a2d9d95569fad386fed2463b6f28aa03b66724d Mon Sep 17 00:00:00 2001 From: Joshua Palis Date: Tue, 12 Mar 2024 12:53:52 -0700 Subject: [PATCH] Removes unnecessary gradle properties (#561) Remove unecessary gradle properties Signed-off-by: Joshua Palis --- gradle.properties | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 gradle.properties diff --git a/gradle.properties b/gradle.properties deleted file mode 100644 index 200c21212..000000000 --- a/gradle.properties +++ /dev/null @@ -1,38 +0,0 @@ -# -# SPDX-License-Identifier: Apache-2.0 -# -# The OpenSearch Contributors require contributions made to -# this file be licensed under the Apache-2.0 license or a -# compatible open source license. -# -# Modifications Copyright OpenSearch Contributors. See -# GitHub history for details. -# - - -# Enable build caching -org.gradle.caching=true -org.gradle.warning.mode=none -org.gradle.parallel=true -# Workaround for https://github.com/diffplug/spotless/issues/834 -org.gradle.jvmargs=-Xmx3g -XX:+HeapDumpOnOutOfMemoryError -Xss2m \ - --add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \ - --add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED \ - --add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED \ - --add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \ - --add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED -options.forkOptions.memoryMaximumSize=2g - -# Disable duplicate project id detection -# See https://docs.gradle.org/current/userguide/upgrading_version_6.html#duplicate_project_names_may_cause_publication_to_fail -systemProp.org.gradle.dependency.duplicate.project.detection=false - -# Enforce the build to fail on deprecated gradle api usage -systemProp.org.gradle.warning.mode=fail - -# forcing to use TLS1.2 to avoid failure in vault -# see https://github.com/hashicorp/vault/issues/8750#issuecomment-631236121 -systemProp.jdk.tls.client.protocols=TLSv1.2 - -# jvm args for faster test execution by default -systemProp.tests.jvm.argline=-XX:TieredStopAtLevel=1 -XX:ReservedCodeCacheSize=64m