Skip to content

Commit

Permalink
OpenAPIv3 Generator Experiment
Browse files Browse the repository at this point in the history
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
  • Loading branch information
reta committed Jan 19, 2023
1 parent 6096034 commit 8efc28a
Show file tree
Hide file tree
Showing 6 changed files with 45,550 additions and 0 deletions.
20 changes: 20 additions & 0 deletions java-client-generator/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
plugins {
id "org.openapi.generator" version "6.2.1"
}

openApiGenerate {
generatorName = "java"
library = "native"
inputSpec = "$projectDir/specs/opensearch-openapi-20190104230353-snippet.json"
templateDir = "$projectDir/src/java/resources/templates"
outputDir = "$buildDir/generated"
modelPackage = "org.opensearch.client"
globalProperties = [
apis: "false",
invokers: "false",
models: ""
]
configOptions = [
dateLibrary: "java8"
]
}
Loading

0 comments on commit 8efc28a

Please sign in to comment.