Jetbrains
- Total activity 28
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 4
-
Created openApiGenerate treating .yaml as .json
AnsweredMy openapi.yaml is:openapi: "3.0.3" info: title: Miit API version: "1.0" servers: - url: https://staging1.miit.co:8443/apiv2 description: staging (test) server paths: /profile: get:... -
Created Gradle: correctly create dependency on generate source
AnsweredI've seen so many examples of how to include generated OpenAPI source but none of them fit my situation. Here's my build.gradle.kts:val ktorVersion = "1.6.6" val exposedVersion = "0.37.3" val log4... -
Created Anyone using the OpenAPI generator? All generated data are kotlin.Any
AnsweredUsing the OpenAPI generator plugin, it generates a load of files but the interface stub class declarations have `kotlin.Any` for attribute types. It doesn't matter what you put in the YAML type of... -
Created Kotlin import declaration is inserted incorrectly
AnsweredE.g., I have: import java.lang.StringBufferclass Stuff { val cursor: StringBuffer} and I add a `java.io.File` component: class Stuff { val cursor: StringBuffer val handle: File} then Intel...