-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathexecutors.json
69 lines (69 loc) · 2.69 KB
/
executors.json
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
{
"executors": {
"dev": {
"implementation": "./src/executors/dev/executor",
"schema": "./src/executors/dev/schema.json",
"description": "Executor to run the project"
},
"serve": {
"implementation": "./src/executors/dev/executor",
"schema": "./src/executors/dev/schema.json",
"description": "Executor to serve the project (alias to 'dev' executor)"
},
"remote-dev": {
"implementation": "./src/executors/remote-dev/executor",
"schema": "./src/executors/remote-dev/schema.json",
"description": "Executor to run the project from remote location"
},
"test": {
"implementation": "./src/executors/test/executor",
"schema": "./src/executors/test/schema.json",
"description": "Executor to test the project"
},
"clean": {
"implementation": "./src/executors/clean/executor",
"schema": "./src/executors/clean/schema.json",
"description": "Executor to clean the project"
},
"format": {
"implementation": "./src/executors/format/executor",
"schema": "./src/executors/format/schema.json",
"description": "Executor to format the project"
},
"apply-format": {
"implementation": "./src/executors/format/executor",
"schema": "./src/executors/format/schema.json",
"description": "Executor to format the project (alias to 'format' executor)"
},
"check-format": {
"implementation": "./src/executors/check-format/executor",
"schema": "./src/executors/check-format/schema.json",
"description": "Executor to check if project's files are well formatted using Spotless plugin"
},
"build": {
"implementation": "./src/executors/build/executor",
"schema": "./src/executors/build/schema.json",
"description": "Executor to build the project"
},
"install": {
"implementation": "./src/executors/install/executor",
"schema": "./src/executors/install/schema.json",
"description": "Executor to install the project's artifacts (i.e jar or war) to the local Maven repository"
},
"package": {
"implementation": "./src/executors/package/executor",
"schema": "./src/executors/package/schema.json",
"description": "Executor to package the project"
},
"add-extension": {
"implementation": "./src/executors/add-extension/executor",
"schema": "./src/executors/add-extension/schema.json",
"description": "Executor to add an extension to the project"
},
"list-extensions": {
"implementation": "./src/executors/list-extensions/executor",
"schema": "./src/executors/list-extensions/schema.json",
"description": "Executor to list extensions in the project"
}
}
}