forked from fundacionjala/enforce-gradle-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParameterData.dat
91 lines (90 loc) · 2.87 KB
/
ParameterData.dat
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
{
"sort": {
"description": "Sort the files by name",
"examples": [
"gradle *task* -Psort=name"
]
},
"pkg.namespace": {
"description": "Package name to install",
"examples": [
"gradle *task* -Ppkg.namespace=al"
]
},
"pkg.version": {
"description": "Version of the product / package you want to install",
"examples": [
"gradle *task* -Ppkg.version=1.18"
]
},
"pkg.password": {
"description": "Password to package ",
"examples": [
"gradle *task* -Ppkg.namespace=al -Ppkg.version=1.18 -Ppkg.password=password"
]
},
"files": {
"description": "Select which files will be executed by the process",
"examples": [
"gradle *task* -Pfiles=classes/Class1.cls",
"gradle *task* -Pfiles=classes/Class1.cls,classes/Class2.cls",
"gradle *task* -Pfiles=classes/*.cls,triggers/*.cls",
"gradle *task* -Pfiles=classes/**"
]
},
"folders": {
"description": "Select which folders will be executed by the process",
"examples": [
"gradle *task* -Pfolders=classes",
"gradle *task* -Pfolders=classes,triggers,objects"
]
},
"excludes": {
"description": "Select which files they will be ignored by the process",
"examples": [
"gradle *task* -Pexcludes=classes/Class1.cls",
"gradle *task* -Pexcludes=classes/Class1.cls,classes/Class2.cls",
"gradle *task* -Pexcludes=classes/*.cls,triggers/*.cls",
"gradle *task* -Pexcludes=classes/**"
]
},
"destination": {
"description": "Specifies the folder on which the task is executed",
"examples": [
"gradle *task* -Pdestination=relative/path",
"gradle *task* -Pdestination=/absolute/path"
]
},
"cls": {
"description": "Select which files will be executed by the process, it is possible to use wildcards",
"examples": [
"gradle *task* -Pcls=Test*"
]
},
"async": {
"description": "Execute test asynchronously",
"examples": [
"gradle *task* -Pasync=true",
"gradle *task* -Pasync=false"
]
},
"input": {
"description": "Set a file or inline code that you want to execute",
"examples": [
"gradle *task* -Pinput=src/classes/ClassOne.cls"
]
},
"output": {
"description": "Set a file path and get results in this file",
"examples": [
"gradle *task* -Poutput=build/file.txt"
]
},
"validation": {
"description": "Validates that files to deleted exist within their Org",
"examples": [
"gradle *task* -Pvalidate=true",
"gradle *task* -Pvalidate=false"
]
},
}