-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmithy-build.json
More file actions
42 lines (42 loc) · 1.09 KB
/
smithy-build.json
File metadata and controls
42 lines (42 loc) · 1.09 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
{
"version": "1.0",
"outputDirectory": "build/",
"sources": ["smithy/model/"],
"maven": {
"dependencies": [
"software.amazon.smithy:smithy-aws-traits:1.68.0",
"software.amazon.smithy:smithy-openapi:1.68.0",
"software.amazon.smithy:smithy-linters:1.68.0",
"software.amazon.smithy.typescript:smithy-aws-typescript-codegen:0.45.0",
"software.amazon.smithy.java:client-codegen:0.0.3",
"software.amazon.smithy.java:client-core:0.0.3"
]
},
"projections": {
"openapi-spec": {
"plugins": {
"openapi": {
"service": "com.shopping.inandout#InAndOut",
"protocol": "aws.protocols#restJson1",
"version": "3.1.0"
}
}
},
"java-client": {
"plugins": {
"java-client-codegen": {
"service": "com.shopping.inandout#InAndOut",
"namespace": "com.shopping.inandout"
}
}
},
"typescript-client": {
"plugins": {
"typescript-codegen": {
"package": "@inandout/client",
"packageVersion": "0.0.1"
}
}
}
}
}