-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathgradle.properties
More file actions
56 lines (49 loc) · 2.8 KB
/
gradle.properties
File metadata and controls
56 lines (49 loc) · 2.8 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
44
45
46
47
48
49
50
51
52
53
54
55
56
# These properties define the locations of the various fcli sub-projects.
# These properties are used in settings.gradle to define the various includes,
# and in build.gradle files for declaring inter-project dependencies. Where
# needed, the corresponding project directory path can be obtained through the
# getRefDir(ref) function.
fcliAppRef=:fcli-core:fcli-app
fcliAviatorRef=:fcli-core:fcli-aviator
fcliAviatorCommonRef=:fcli-core:fcli-aviator-common
fcliCommonRef=:fcli-core:fcli-common
fcliActionRef=:fcli-core:fcli-action
fcliConfigRef=:fcli-core:fcli-config
fcliFoDRef=:fcli-core:fcli-fod
fcliSCDastRef=:fcli-core:fcli-sc-dast
fcliSCSastRef=:fcli-core:fcli-sc-sast
fcliSSCRef=:fcli-core:fcli-ssc
fcliToolRef=:fcli-core:fcli-tool
fcliLicenseRef=:fcli-core:fcli-license
fcliUtilRef=:fcli-core:fcli-util
fcliBomRef=:fcli-other:fcli-bom
fcliFunctionalTestRef=:fcli-other:fcli-functional-test
fcliAutoCompleteRef=:fcli-other:fcli-autocomplete
fcliDocRef=:fcli-other:fcli-doc
# Comma-separated list of patterns that should match all of the *Ref properties above
refPatterns=fcli.+Ref,patchGraalVMAnnotationsProcessorRef
# Define the class names of the fcli top-level @Command class, used for generating manual pages,
# reflect-config.json, ...
# FortifyCLITest checks that this property contains a valid class name.
fcliRootCommandsClassName=com.fortify.cli.app._main.cli.cmd.FCLIRootCommands
# Define the main class name for running fcli.
# FortifyCLITest checks that this property contains a valid class name.
fcliMainClassName=com.fortify.cli.app.FortifyCLI
# Define fcli action schema version. This must be manually maintained, and must
# be updated whenever the action schema model is changed:
# - Increase patch version for non-structural changes, like description updates.
# - Increase minor version for backward-compatible structural changes, like
# adding new (optional) step types or adding new optional properties to existing
# types.
# - Increase major version for non-backward-compatible changes, like adding new
# required properties, or changing the meaning/value type of an existing property.
# To allow for proper detection of whether a given fcli version is compatible with a
# given schema version, it is very important to maintain this correctly. At all cost,
# we should avoid for example updating only patch version if there are any structural
# changes.
fcliActionSchemaVersion=2.8.0
org.gradle.parallel=true
# Ensure JDK IO subsystem is opened for all Gradle daemon JVM processes (suppresses native subprocess control warning)
org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8 --add-opens=java.base/java.io=ALL-UNNAMED --add-opens=java.base/sun.nio.ch=ALL-UNNAMED
# Enable automatic Spotless formatting by default (can disable via -PautoFormat=false)
autoFormat=true