-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
gradle.properties
144 lines (130 loc) · 4.93 KB
/
gradle.properties
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#
# Copyright (c) 2024 Elide Technologies, Inc.
#
# Licensed under the MIT license (the "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# https://opensource.org/license/mit/
#
# 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.
#
# Settings: Build
cachePush = true
strictMode = true
publishMainHostLock = false
buildSamples = false
buildExamples = false
buildEmbedded = false
buildPlugins = false
buildDocs = false
buildDocsModules = false
buildBenchmarks = false
buildMingw = true
buildAndroid = false
buildUuid = false
buildDeprecated = false
buildPkl = false
buildAuxImage = false
enableSigning = false
enableSigstore = false
enableKnit = false
enableProguard = false
enableSubstrate = false
enableOwasp = true
elide.march = compatibility
elide.buildMode = dev
elide.kotlinNative = true
elide.allTargets = false
elie.release = false
elide.strict = true
elide.pluginVersion = 1.0.0-beta23
elide.pluginMode = inert
elide.stamp = false
elide.atomicFu = true
elide.lockDeps = false
elide.graalvm.variant = COMMUNITY
elide.vm.inspect = false
elide.kotlin.k2 = true
elide.entryDsn = https://cb4b4bfdfef4586f047a9240241beb12@o4507518750556160.ingest.us.sentry.io/4507518754095104
nativeImageBuildDebug = false
nativeImageBuildVerbose = false
elide.build.jpms.disable = true
elide.build.kotlin.wasm.disable = true
elide.publish.repo.maven.auth = false
elide.publish.repo.maven = s3://elide-maven
systemProp.org.gradle.s3.endpoint = https://8d4252856750d8486c1740c063bc5a40.r2.cloudflarestorage.com
elide.publish.repo.docker.tools = us-docker.pkg.dev/elide-fw/tools
elide.publish.repo.docker.samples = us-docker.pkg.dev/elide-fw/samples
elide.samples.docker.base.native = us-docker.pkg.dev/elide-fw/tools/runtime/native:latest
# Settings: Gradle
org.gradle.parallel = true
org.gradle.caching = true
org.gradle.configureondemand = true
org.gradle.jvmargs = -XX:MaxMetaspaceSize=1024m -XX:+UseParallelGC -Xmx3g --add-opens=java.base/java.util.\
function=ALL-UNNAMED --add-opens=java.base/java.util.stream=ALL-UNNAMED --add-opens=java.base/sun.nio.ch=ALL-UNNAMED \
--add-opens=java.base/java.nio.channels=ALL-UNNAMED --add-opens=java.base/java.nio.channels.spi=ALL-UNNAMED \
--add-opens=java.base/java.util.concurrent=ALL-UNNAMED --add-opens=java.base/java.util.concurrent.locks=ALL-UNNAMED \
--add-opens=java.base/java.lang.ref=ALL-UNNAMED --add-opens=java.base/java.text=ALL-UNNAMED --add-opens=java.base/sun.\
util.calendar=ALL-UNNAMED --enable-native-access=ALL-UNNAMED
org.gradle.unsafe.isolated-projects = false
org.gradle.configuration-cache = false
org.gradle.configuration-cache.problems = warn
org.gradle.configuration-cache.stable = true
org.gradle.configuration-cache.max-problems = 1000
org.gradle.dependency.verification = lenient
org.gradle.warning.mode = none
gradle.enterprise.testretry.enabled = false
systemProp.gradle.enterprise.testretry.enabled = false
# Settings: Languages / Runtimes
versions.java.language = 21
versions.java.toolchain = 22
versions.java.minimum = 11
versions.java.target = 21
versions.kotlin.sdk = 2.0.0
versions.kotlin.language = 2.0
versions.android.sdk.target = 33
# Settings: Libraries
micronautVersion = 4.4.0
nodeVersion = 22.0.0
# Settings: Kotlin
kotlin.code.style = official
kotlin.mpp.stability.nowarn = true
kotlin.js.yarn = false
kotlin.js.generate.executable.default = false
kotlin.js.ir.output.granularity = per-file
kotlin.jvm.target.validation.mode = warning
kotlin.parallel.tasks.in.project = true
kotlin.build.report.output = build_scan
kotlin.incremental = true
kotlin.apple.xcodeCompatibility.nowarn = true
kotlin.stdlib.default.dependency = true
kotlin.native.ignoreDisabledTargets = true
kotlinx.atomicfu.enableJvmIrTransformation = true
kotlinx.atomicfu.enableNativeIrTransformation = true
kotlinx.atomicfu.enableJsIrTransformation = true
kotlin.daemon.jvmargs = -Xmx2G -XX:+UseParallelGC
kotlin.compiler.preciseCompilationResultsBackup = true
kotlin.compiler.execution.strategy = daemon
kotlin.compiler.suppressExperimentalICOptimizationsWarning = true
kotlin.mpp.applyDefaultHierarchyTemplate = false
kotlin.mpp.enableCInteropCommonization = false
kotlin.build.report.http.include_git_branch.name = true
kotlin.build.report.include_compiler_arguments = true
# Settings: KApt & KSP
ksp.useKSP2 = true
ksp.incremental = true
ksp.incremental.intermodule = true
kapt.incremental.apt = false
kapt.verbose = false
kapt.use.k2 = true
kapt.use.worker.api = true
kapt.classloaders.cache.size = 12
kapt.include.compile.classpath = false
# Settings: Sonar
sonar.gradle.skipCompile = true
systemProp.sonar.gradle.skipCompile = true
# Settings: Dependency Analysis
dependency.analysis.autoapply = true
dependency.analysis.print.build.health = false