-
Notifications
You must be signed in to change notification settings - Fork 20
/
smithy-templates.json
155 lines (155 loc) · 4.27 KB
/
smithy-templates.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "smithy-gradle-plugin",
"templates": {
"includes-in-sourceset": {
"documentation": "Add additional files to the main smithy source set.",
"path": "examples/base-plugin/includes-in-sourceset",
"include": [
"gradle/",
"gradlew",
"gradlew.bat",
".gitignore"
]
},
"output-directory": {
"documentation": "Write Smithy build artifacts to a specified directory.",
"path": "examples/base-plugin/output-directory",
"include": [
"gradle/",
"gradlew",
"gradlew.bat",
".gitignore"
]
},
"output-directory-with-config": {
"documentation": "Write Smithy build artifacts to a specified directory based on smithy-build settings.",
"path": "examples/base-plugin/output-directory-config",
"include": [
"gradle/",
"gradlew",
"gradlew.bat",
".gitignore"
]
},
"output-directory-with-projection": {
"documentation": "Write Smithy build artifacts to a specified directory and generate a projected version of the model.",
"path": "examples/base-plugin/output-directory-with-projection",
"include": [
"gradle/",
"gradlew",
"gradlew.bat",
".gitignore"
]
},
"smithy-build-task": {
"documentation": "Build Smithy models using a custom build task.",
"path": "examples/base-plugin/smithy-build-task",
"include": [
"gradle/",
"gradlew",
"gradlew.bat",
".gitignore"
]
},
"add-tags": {
"documentation": "Add a Smithy tag to the built JAR.",
"path": "examples/jar-plugin/adds-tags",
"include": [
"gradle/",
"gradlew",
"gradlew.bat",
".gitignore"
]
},
"build-dependencies": {
"documentation": "Add build-only dependencies.",
"path": "examples/jar-plugin/build-dependencies",
"include": [
"gradle/",
"gradlew",
"gradlew.bat",
".gitignore"
]
},
"custom-trait": {
"documentation": "Add Smithy files for a trait alongside the Java definition of that trait.",
"path": "examples/jar-plugin/custom-trait",
"include": [
"gradle/",
"gradlew",
"gradlew.bat",
".gitignore"
]
},
"kotlin-jvm-project": {
"documentation": "Add Smithy models to a JAR created by a Kotlin project.",
"path": "examples/jar-plugin/kotlin-jvm-project",
"include": [
"gradle/",
"gradlew",
"gradlew.bat",
".gitignore"
]
},
"scala-project": {
"documentation": "Add Smithy models to a JAR created by a Scala project.",
"path": "examples/jar-plugin/scala-project",
"include": [
"gradle/",
"gradlew",
"gradlew.bat",
".gitignore"
]
},
"multiple-jars": {
"documentation": "Build a Smithy JAR using both the java-library plugin and manually defined tasks.",
"path": "examples/jar-plugin/multiple-jars",
"include": [
"gradle/",
"gradlew",
"gradlew.bat",
".gitignore"
]
},
"projection": {
"documentation": "Place a projected version of the model into the JAR.",
"path": "examples/jar-plugin/projection",
"include": [
"gradle/",
"gradlew",
"gradlew.bat",
".gitignore"
]
},
"source-projection": {
"documentation": "Build a Smithy model and place it in a JAR.",
"path": "examples/jar-plugin/source-projection",
"include": [
"gradle/",
"gradlew",
"gradlew.bat",
".gitignore"
]
},
"simple-trait": {
"documentation": "Trait package for simple Smithy structure trait with multiple inputs.",
"path": "examples/trait-package-plugin/create-simple-trait",
"include": [
"gradle/",
"gradlew",
"gradlew.bat",
".gitignore"
]
},
"existing-trait": {
"documentation": "Use existing, hand-written Java trait definition alongside generated trait definitions.",
"path": "examples/trait-package-plugin/use-with-existing-trait",
"include": [
"gradle/",
"gradlew",
"gradlew.bat",
".gitignore"
]
}
}
}