forked from xtclang/xvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxdk.properties
More file actions
41 lines (37 loc) · 1.72 KB
/
xdk.properties
File metadata and controls
41 lines (37 loc) · 1.72 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
#
# This file contains global XDK properties, that do not explicitly configure Gradle or its DSL infra.
#
# Should we rebuild the unicode files from fresh templates as part of the XDK build?
# (Note: this modifies source control files in the project.)
# org.xtclang.unicode.rebuild=false
#
# Docker properties
#
# Should Docker builds allow emulation for cross-platform builds? (default is false, will only build native docker architecture)
# Docker/Podman command (use "podman" to use podman instead of docker) locally. The CI ignores this.
#
org.xtclang.docker.allowEmulation=false
org.xtclang.docker.command=podman
#
# Java Properties; used by the XTC precompiled Java convention plugin.
#
# Note: JDK toolchain versions (org.xtclang.java.jdk and org.xtclang.kotlin.jdk)
# are defined in version.properties as they are platform version constraints.
#
# Note that warningsAsErrors is only checked if we are running with linting enabled.
#
#org.xtclang.java.enablePreview=true
org.xtclang.java.enableNativeAccess=true
# TODO: There are thousands of Java warnings, but we don't want to spew the github action log full of 500 of them, it takes run time.
org.xtclang.java.maxWarnings=20
org.xtclang.java.maxErrors=20
org.xtclang.java.warningsAsErrors=true
org.xtclang.java.lint=false
org.xtclang.java.test.stdout=true
# XTC Plugin Properties
org.xtclang.plugin.id=org.xtclang.xtc-plugin
org.xtclang.plugin.display.name=XTC Language Gradle plugin
org.xtclang.plugin.description=A plugin that teaches Gradle the XTC language. First step to language server debugging and IDE support.
org.xtclang.plugin.implementation.class=org.xtclang.plugin.XtcPlugin
org.xtclang.plugin.website=https://xtclang.org
org.xtclang.plugin.vcs.url=https://github.com/xtclang/xvm