-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yml
More file actions
31 lines (31 loc) · 1.23 KB
/
config.yml
File metadata and controls
31 lines (31 loc) · 1.23 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
apiPackage: ai.reveng.api
modelPackage: ai.reveng.model
invokerPackage: ai.reveng.invoker
groupId: ai.reveng
artifactId: sdk
artifactUrl: https://github.com/RevEngAI/sdk-java
artifactDescription: Java SDK for the RevEng.AI API
licenseName: MIT
licenseUrl: https://opensource.org/license/mit
developerName: RevEng.AI
developerEmail: support@reveng.ai
developerOrganization: RevEng.AI
developerOrganizationUrl: https://reveng.ai
scmConnection: scm:git:git@github.com:RevEngAI/sdk-java.git
scmDeveloperConnection: scm:git:git@github.com:RevEngAI/sdk-java.git
scmUrl: https://github.com/RevEngAI/sdk-java
library: okhttp-gson
# Do not include timestamps in the generated files to avoid unnecessary diffs
hideGenerationTimestamp: true
# Allow unknown properties to avoid breaking when the API adds new fields, and we haven't updated the SDK yet
disallowAdditionalPropertiesIfNotPresent: false
typeMappings:
integer+bigint: BigInteger
importMappings:
BigInteger: java.math.BigInteger
# Do not generate API tests or model tests as they would be empty and cause confusion. We will add our own tests manually.
globalProperties:
apiTests: false
modelTests: false
# When an unknown enum value is found map to unknown_default_open_api
enumUnknownDefaultCase: true