-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathexecutors.json
59 lines (59 loc) · 2.36 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
{
"executors": {
"run": {
"implementation": "./src/executors/run/executor",
"schema": "./src/executors/run/schema.json",
"description": "Executor to serve the project (alias to 'run' executor)"
},
"serve": {
"implementation": "./src/executors/run/executor",
"schema": "./src/executors/run/schema.json",
"description": "Executor to serve the project (alias to 'run' executor)"
},
"dockerfile": {
"implementation": "./src/executors/dockerfile/executor",
"schema": "./src/executors/dockerfile/schema.json",
"description": "Executor to Generates a Dockerfile depending on the 'packaging' and 'micronaut.runtime' properties."
},
"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"
},
"aot-sample-config": {
"implementation": "./src/executors/aot-sample-config/executor",
"schema": "./src/executors/aot-sample-config/schema.json",
"description": "Executor to list extensions in the project"
}
}
}