You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because of Gradle borked way of handling classpaths, a Gradle sync is necessary in order to have autocomplete in build.gradle.kts files.
A simple project like so:
plugins {
id("org.jetbrains.kotlin.jvm")
id("io.github.nomisrev.openapi-kt-plugin")
}
// No openApiConfig here
fails Gradle sync with:
Caused by: java.lang.IllegalArgumentException: No OpenAPI Config found
at io.github.nomisrev.openapi.plugin.GenerateClientTask.sampleAction(GenerateClientTask.kt:34)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
It'd be nice if the Gradle sync could go through so that we could type the config using IDE support.
The text was updated successfully, but these errors were encountered:
Because of Gradle borked way of handling classpaths, a Gradle sync is necessary in order to have autocomplete in
build.gradle.kts
files.A simple project like so:
fails Gradle sync with:
It'd be nice if the Gradle sync could go through so that we could type the config using IDE support.
The text was updated successfully, but these errors were encountered: