question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[BUG] Untracked files constantly reappearing

See original GitHub issue

Bug Report Checklist

  • Have you provided a full/minimal spec to reproduce the issue?
  • Have you validated the input using an OpenAPI validator (example)?
  • What’s the version of OpenAPI Generator used?
  • Have you search for related issues/PRs?
  • What’s the actual output vs expected output?
  • [Optional] Bounty to sponsor the fix (example)
Description

I encountered this issue many times. I constantly see untracked files in the same folders. I delete them, but they reappear again after a while. I’m not sure, but I guess it somehow related to my IDE(VSCode) and Java extensions, maybe VSCode tries to build something automatically without my knowledge. These untracked files are always in client groovy, client kotlin and some times in client dart. I never noticed untracked files in server samples.

Here the latest list of untracked files:

$  git ls-files --others --exclude-standard
samples/client/petstore/groovy/bin/main/org/openapitools/api/ApiUtils.groovy
samples/client/petstore/groovy/bin/main/org/openapitools/api/PetApi.groovy
samples/client/petstore/groovy/bin/main/org/openapitools/api/StoreApi.groovy
samples/client/petstore/groovy/bin/main/org/openapitools/api/UserApi.groovy
samples/client/petstore/groovy/bin/main/org/openapitools/model/Category.groovy
samples/client/petstore/groovy/bin/main/org/openapitools/model/InlineObject.groovy
samples/client/petstore/groovy/bin/main/org/openapitools/model/InlineObject1.groovy
samples/client/petstore/groovy/bin/main/org/openapitools/model/ModelApiResponse.groovy
samples/client/petstore/groovy/bin/main/org/openapitools/model/Order.groovy
samples/client/petstore/groovy/bin/main/org/openapitools/model/Pet.groovy
samples/client/petstore/groovy/bin/main/org/openapitools/model/Tag.groovy
samples/client/petstore/groovy/bin/main/org/openapitools/model/User.groovy
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/apis/PetApi.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/apis/StoreApi.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/apis/UserApi.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/infrastructure/ApiAbstractions.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/infrastructure/ApiClient.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/infrastructure/ApiInfrastructureResponse.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/infrastructure/ApplicationDelegates.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/infrastructure/ByteArrayAdapter.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/infrastructure/DateAdapter.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/infrastructure/Errors.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/infrastructure/LocalDateAdapter.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/infrastructure/LocalDateTimeAdapter.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/infrastructure/OffsetDateTimeAdapter.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/infrastructure/RequestConfig.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/infrastructure/RequestMethod.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/infrastructure/ResponseExtensions.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/infrastructure/Serializer.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/models/ApiResponse.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/models/Category.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/models/Order.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/models/Pet.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/models/Tag.kt
samples/client/petstore/kotlin-gson/bin/main/org/openapitools/client/models/User.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/apis/PetApi.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/apis/StoreApi.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/apis/UserApi.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/infrastructure/ApiAbstractions.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/infrastructure/ApiClient.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/infrastructure/ApiInfrastructureResponse.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/infrastructure/ApplicationDelegates.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/infrastructure/ByteArrayAdapter.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/infrastructure/Errors.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/infrastructure/RequestConfig.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/infrastructure/RequestMethod.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/infrastructure/ResponseExtensions.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/infrastructure/Serializer.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/models/ApiResponse.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/models/Category.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/models/Order.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/models/Pet.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/models/Tag.kt
samples/client/petstore/kotlin-jackson/bin/main/org/openapitools/client/models/User.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/apis/PetApi.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/apis/StoreApi.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/apis/UserApi.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/infrastructure/ApiAbstractions.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/infrastructure/ApiClient.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/infrastructure/ApiInfrastructureResponse.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/infrastructure/ApplicationDelegates.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/infrastructure/ByteArrayAdapter.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/infrastructure/Errors.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/infrastructure/LocalDateAdapter.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/infrastructure/LocalDateTimeAdapter.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/infrastructure/OffsetDateTimeAdapter.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/infrastructure/RequestConfig.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/infrastructure/RequestMethod.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/infrastructure/ResponseExtensions.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/infrastructure/Serializer.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/infrastructure/UUIDAdapter.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/models/ApiResponse.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/models/Category.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/models/Order.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/models/Pet.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/models/Tag.kt
samples/client/petstore/kotlin-json-request-string/bin/main/org/openapitools/client/models/User.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/apis/PetApi.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/apis/StoreApi.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/apis/UserApi.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/infrastructure/ApiAbstractions.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/infrastructure/ApiClient.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/infrastructure/ApiInfrastructureResponse.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/infrastructure/ApplicationDelegates.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/infrastructure/ByteArrayAdapter.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/infrastructure/DateAdapter.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/infrastructure/Errors.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/infrastructure/LocalDateAdapter.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/infrastructure/LocalDateTimeAdapter.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/infrastructure/OffsetDateTimeAdapter.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/infrastructure/RequestConfig.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/infrastructure/RequestMethod.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/infrastructure/ResponseExtensions.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/infrastructure/Serializer.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/models/ApiResponse.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/models/Category.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/models/Order.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/models/Pet.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/models/Tag.kt
samples/client/petstore/kotlin-jvm-okhttp4-coroutines/bin/main/org/openapitools/client/models/User.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/apis/PetApi.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/apis/StoreApi.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/apis/UserApi.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/infrastructure/ApiAbstractions.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/infrastructure/ApiClient.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/infrastructure/ApiInfrastructureResponse.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/infrastructure/ApplicationDelegates.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/infrastructure/ByteArrayAdapter.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/infrastructure/Errors.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/infrastructure/LocalDateAdapter.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/infrastructure/LocalDateTimeAdapter.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/infrastructure/OffsetDateTimeAdapter.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/infrastructure/RequestConfig.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/infrastructure/RequestMethod.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/infrastructure/ResponseExtensions.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/infrastructure/Serializer.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/infrastructure/UUIDAdapter.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/models/ApiResponse.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/models/Category.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/models/Order.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/models/Pet.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/models/Tag.kt
samples/client/petstore/kotlin-moshi-codegen/bin/main/org/openapitools/client/models/User.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/apis/PetApi.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/apis/StoreApi.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/apis/UserApi.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/infrastructure/ApiAbstractions.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/infrastructure/ApiClient.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/infrastructure/ApiInfrastructureResponse.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/infrastructure/ApplicationDelegates.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/infrastructure/ByteArrayAdapter.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/infrastructure/Errors.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/infrastructure/LocalDateAdapter.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/infrastructure/LocalDateTimeAdapter.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/infrastructure/OffsetDateTimeAdapter.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/infrastructure/RequestConfig.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/infrastructure/RequestMethod.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/infrastructure/ResponseExtensions.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/infrastructure/Serializer.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/infrastructure/UUIDAdapter.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/models/ApiResponse.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/models/Category.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/models/Order.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/models/Pet.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/models/Tag.kt
samples/client/petstore/kotlin-nonpublic/bin/main/org/openapitools/client/models/User.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/apis/PetApi.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/apis/StoreApi.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/apis/UserApi.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/infrastructure/ApiAbstractions.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/infrastructure/ApiClient.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/infrastructure/ApiInfrastructureResponse.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/infrastructure/ApplicationDelegates.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/infrastructure/ByteArrayAdapter.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/infrastructure/Errors.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/infrastructure/LocalDateAdapter.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/infrastructure/LocalDateTimeAdapter.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/infrastructure/OffsetDateTimeAdapter.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/infrastructure/RequestConfig.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/infrastructure/RequestMethod.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/infrastructure/ResponseExtensions.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/infrastructure/Serializer.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/infrastructure/UUIDAdapter.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/models/ApiResponse.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/models/Category.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/models/Order.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/models/Pet.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/models/Tag.kt
samples/client/petstore/kotlin-nullable/bin/main/org/openapitools/client/models/User.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/apis/PetApi.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/apis/StoreApi.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/apis/UserApi.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/infrastructure/ApiAbstractions.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/infrastructure/ApiClient.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/infrastructure/ApiInfrastructureResponse.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/infrastructure/ApplicationDelegates.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/infrastructure/ByteArrayAdapter.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/infrastructure/Errors.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/infrastructure/LocalDateAdapter.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/infrastructure/LocalDateTimeAdapter.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/infrastructure/OffsetDateTimeAdapter.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/infrastructure/RequestConfig.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/infrastructure/RequestMethod.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/infrastructure/ResponseExtensions.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/infrastructure/Serializer.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/infrastructure/UUIDAdapter.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/models/ApiResponse.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/models/Category.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/models/Order.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/models/Pet.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/models/Tag.kt
samples/client/petstore/kotlin-okhttp3/bin/main/org/openapitools/client/models/User.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/apis/PetApi.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/apis/StoreApi.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/apis/UserApi.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/auth/ApiKeyAuth.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/auth/OAuth.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/auth/OAuthFlow.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/auth/OAuthOkHttpClient.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/infrastructure/ApiClient.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/infrastructure/ByteArrayAdapter.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/infrastructure/CollectionFormats.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/infrastructure/LocalDateAdapter.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/infrastructure/LocalDateTimeAdapter.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/infrastructure/OffsetDateTimeAdapter.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/infrastructure/ResponseExt.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/infrastructure/Serializer.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/infrastructure/UUIDAdapter.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/models/ApiResponse.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/models/Category.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/models/Order.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/models/Pet.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/models/Tag.kt
samples/client/petstore/kotlin-retrofit2/bin/main/org/openapitools/client/models/User.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/apis/PetApi.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/apis/StoreApi.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/apis/UserApi.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/infrastructure/ApiAbstractions.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/infrastructure/ApiClient.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/infrastructure/ApiInfrastructureResponse.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/infrastructure/ApplicationDelegates.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/infrastructure/ByteArrayAdapter.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/infrastructure/Errors.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/infrastructure/LocalDateAdapter.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/infrastructure/LocalDateTimeAdapter.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/infrastructure/OffsetDateTimeAdapter.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/infrastructure/RequestConfig.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/infrastructure/RequestMethod.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/infrastructure/ResponseExtensions.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/infrastructure/Serializer.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/infrastructure/UUIDAdapter.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/models/ApiResponse.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/models/Category.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/models/Order.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/models/Pet.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/models/Tag.kt
samples/client/petstore/kotlin-string/bin/main/org/openapitools/client/models/User.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/apis/PetApi.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/apis/StoreApi.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/apis/UserApi.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/infrastructure/ApiAbstractions.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/infrastructure/ApiClient.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/infrastructure/ApiInfrastructureResponse.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/infrastructure/ApplicationDelegates.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/infrastructure/ByteArrayAdapter.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/infrastructure/Errors.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/infrastructure/LocalDateAdapter.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/infrastructure/LocalDateTimeAdapter.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/infrastructure/OffsetDateTimeAdapter.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/infrastructure/RequestConfig.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/infrastructure/RequestMethod.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/infrastructure/ResponseExtensions.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/infrastructure/Serializer.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/infrastructure/UUIDAdapter.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/models/ApiResponse.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/models/Category.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/models/Order.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/models/Pet.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/models/Tag.kt
samples/client/petstore/kotlin-threetenbp/bin/main/org/openapitools/client/models/User.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/apis/PetApi.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/apis/StoreApi.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/apis/UserApi.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/infrastructure/ApiAbstractions.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/infrastructure/ApiClient.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/infrastructure/ApiInfrastructureResponse.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/infrastructure/ApplicationDelegates.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/infrastructure/ByteArrayAdapter.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/infrastructure/Errors.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/infrastructure/LocalDateAdapter.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/infrastructure/LocalDateTimeAdapter.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/infrastructure/OffsetDateTimeAdapter.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/infrastructure/RequestConfig.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/infrastructure/RequestMethod.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/infrastructure/ResponseExtensions.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/infrastructure/Serializer.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/infrastructure/UUIDAdapter.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/models/ApiResponse.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/models/Category.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/models/Order.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/models/Pet.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/models/Tag.kt
samples/client/petstore/kotlin/bin/main/org/openapitools/client/models/User.kt
openapi-generator version

Latest master 57ee092abda3423fcbe28fafcafa422883526f19

Generation Details
$ bash --version
GNU bash, version 3.2.57(1)-release (x86_64-apple-darwin18)
Copyright (C) 2007 Free Software Foundation, Inc.
$ java --version
java 13.0.1 2019-10-15
Java(TM) SE Runtime Environment (build 13.0.1+9)
Java HotSpot(TM) 64-Bit Server VM (build 13.0.1+9, mixed mode, sharing)
$ locale
LANG=
LC_COLLATE="C"
LC_CTYPE="UTF-8"
LC_MESSAGES="C"
LC_MONETARY="C"
LC_NUMERIC="C"
LC_TIME="C"
LC_ALL=

@jimschubert if you need more info let me know.

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:13 (13 by maintainers)

github_iconTop GitHub Comments

1reaction
wing328commented, Aug 9, 2020

I think the IDE that you used tried to find all build files (e.g. pom.xml, build.gradle, etc) and build all these projects, which will result in a lot of build files (ideally these folders should be added to .gitignore).

I usually import “openapi-generator” module only instead of the whole project in the IDE.

0reactions
ybelenkocommented, Apr 7, 2021

Since it doesn’t happen after I disabled Java Extension pack and it doesn’t frustrate me anymore, closed but not solved.

Info about VSCode extension: Name: Java Extension Pack Id: vscjava.vscode-java-pack Description: Popular extensions for Java development and more. Version: 0.9.1 Publisher: Microsoft

At least I do understand that once enabled that extensions tries to launch all .pom files from project tree. Now I turn it manually on when I need to run specific Java test suites.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Staged deleted file that was renamed keeps reappearing #784
I have an untracked file named :q . When I delete it it disappears briefly and then it reappears. Deleting it from the...
Read more >
git - error: The following untracked working tree files would be ...
This file has been coming up constantly and when I remove it from file system, git will say I removed this file, while...
Read more >
Deleted folder keeps showing up? - git@vger.kernel.org
I made a branch and deleted a folder there with git rm -rf foldername. So now i have to branches, A with the...
Read more >
CSCvo74833 - High unmanaged disk space on ... - Cisco Bug
CSCvo74833 - High unmanaged disk space on Firepower devices due to untracked files - 1. My firepower4120 have alarm:high unmanaged disk ...
Read more >
How to Properly Remove Untracked Files With Git - CloudBees
In this post, learn how to remove untracked files with Git. We'll begin with a brief explanation followed by examples and best practices....
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found