diff --git a/modules/openapi-generator/src/main/java/org/openapitools/codegen/CodegenConstants.java b/modules/openapi-generator/src/main/java/org/openapitools/codegen/CodegenConstants.java
index cf8a29642e3..de762960ed3 100644
--- a/modules/openapi-generator/src/main/java/org/openapitools/codegen/CodegenConstants.java
+++ b/modules/openapi-generator/src/main/java/org/openapitools/codegen/CodegenConstants.java
@@ -224,7 +224,7 @@ public class CodegenConstants {
public static final String VALIDATABLE_DESC = "Generates self-validatable models.";
public static final String IGNORE_FILE_OVERRIDE = "ignoreFileOverride";
- public static final String IGNORE_FILE_OVERRIDE_DESC = "Specifies an override location for the .swagger-codegen-ignore file. Most useful on initial generation.";
+ public static final String IGNORE_FILE_OVERRIDE_DESC = "Specifies an override location for the .openapi-generator-ignore file. Most useful on initial generation.";
public static final String REMOVE_OPERATION_ID_PREFIX = "removeOperationIdPrefix";
public static final String REMOVE_OPERATION_ID_PREFIX_DESC = "Remove prefix of operationId, e.g. config_getId => getId";
diff --git a/modules/openapi-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java b/modules/openapi-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java
index c05177ce77f..6df88edd4ba 100644
--- a/modules/openapi-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java
+++ b/modules/openapi-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java
@@ -867,7 +867,7 @@ public class DefaultCodegen implements CodegenConfig {
importMapping.put("LocalDate", "org.joda.time.*");
importMapping.put("LocalTime", "org.joda.time.*");
- // we've used the .swagger-codegen-ignore approach as
+ // we've used the .openapi-generator-ignore approach as
// suppportingFiles can be cleared by code generator that extends
// the default codegen, leaving the commented code below for
// future reference
@@ -3754,7 +3754,7 @@ public class DefaultCodegen implements CodegenConfig {
}
/**
- * Provides an override location, if any is specified, for the .swagger-codegen-ignore.
+ * Provides an override location, if any is specified, for the .openapi-generator-ignore.
*
* This is originally intended for the first generation only.
*
diff --git a/modules/openapi-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java b/modules/openapi-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java
index c3e2bc19bed..5d7811d56d1 100644
--- a/modules/openapi-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java
+++ b/modules/openapi-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java
@@ -46,7 +46,7 @@ public class DefaultGenerator extends AbstractGenerator implements Generator {
private Boolean generateApiDocumentation = null;
private Boolean generateModelTests = null;
private Boolean generateModelDocumentation = null;
- private Boolean generateSwaggerMetadata = true;
+ private Boolean generateMetadata = true;
private String basePath;
private String basePathWithoutHost;
private String contextPath;
@@ -77,13 +77,13 @@ public class DefaultGenerator extends AbstractGenerator implements Generator {
}
/**
- * Programmatically disable the output of .swagger-codegen/VERSION, .swagger-codegen-ignore,
+ * Programmatically disable the output of .swagger-codegen/VERSION, .openapi-generator-ignore,
* or other metadata files used by Swagger Codegen.
- * @param generateSwaggerMetadata true: enable outputs, false: disable outputs
+ * @param generateMetadata true: enable outputs, false: disable outputs
*/
@SuppressWarnings("WeakerAccess")
- public void setGenerateSwaggerMetadata(Boolean generateSwaggerMetadata) {
- this.generateSwaggerMetadata = generateSwaggerMetadata;
+ public void setGenerateMetadata(Boolean generateMetadata) {
+ this.generateMetadata = generateMetadata;
}
/**
@@ -152,7 +152,7 @@ public class DefaultGenerator extends AbstractGenerator implements Generator {
}
// for backward compatibility
if (System.getProperty("debugSwagger") != null) {
- LOGGER.info("Please use 'debugOpenAPI' instead of 'debugSwagger` moving forward.");
+ LOGGER.info("Please use system property 'debugOpenAPI' instead of 'debugSwagger'.");
Json.prettyPrint(openAPI);
}
@@ -196,8 +196,8 @@ public class DefaultGenerator extends AbstractGenerator implements Generator {
if (StringUtils.isEmpty(info.getDescription())) {
// set a default description if none if provided
config.additionalProperties().put("appDescription",
- "No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)");
- config.additionalProperties().put("unescapedAppDescription", "No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)");
+ "No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)");
+ config.additionalProperties().put("unescapedAppDescription", "No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)");
} else {
config.additionalProperties().put("appDescription", config.escapeText(info.getDescription()));
config.additionalProperties().put("unescapedAppDescription", info.getDescription());
@@ -639,37 +639,37 @@ public class DefaultGenerator extends AbstractGenerator implements Generator {
files.add(outputFile);
}
} else {
- LOGGER.info("Skipped generation of " + outputFilename + " due to rule in .swagger-codegen-ignore");
+ LOGGER.info("Skipped generation of " + outputFilename + " due to rule in .openapi-generator-ignore");
}
} catch (Exception e) {
throw new RuntimeException("Could not generate supporting file '" + support + "'", e);
}
}
- // Consider .swagger-codegen-ignore a supporting file
- // Output .swagger-codegen-ignore if it doesn't exist and wasn't explicitly created by a generator
- final String swaggerCodegenIgnore = ".swagger-codegen-ignore";
- String ignoreFileNameTarget = config.outputFolder() + File.separator + swaggerCodegenIgnore;
+ // Consider .openapi-generator-ignore a supporting file
+ // Output .openapi-generator-ignore if it doesn't exist and wasn't explicitly created by a generator
+ final String openapiGeneratorIgnore = ".openapi-generator-ignore";
+ String ignoreFileNameTarget = config.outputFolder() + File.separator + openapiGeneratorIgnore;
File ignoreFile = new File(ignoreFileNameTarget);
- if (generateSwaggerMetadata && !ignoreFile.exists()) {
- String ignoreFileNameSource = File.separator + config.getCommonTemplateDir() + File.separator + swaggerCodegenIgnore;
+ if (generateMetadata && !ignoreFile.exists()) {
+ String ignoreFileNameSource = File.separator + config.getCommonTemplateDir() + File.separator + openapiGeneratorIgnore;
String ignoreFileContents = readResourceContents(ignoreFileNameSource);
try {
writeToFile(ignoreFileNameTarget, ignoreFileContents);
} catch (IOException e) {
- throw new RuntimeException("Could not generate supporting file '" + swaggerCodegenIgnore + "'", e);
+ throw new RuntimeException("Could not generate supporting file '" + openapiGeneratorIgnore + "'", e);
}
files.add(ignoreFile);
}
- if(generateSwaggerMetadata) {
- final String swaggerVersionMetadata = config.outputFolder() + File.separator + ".swagger-codegen" + File.separator + "VERSION";
- File swaggerVersionMetadataFile = new File(swaggerVersionMetadata);
+ if(generateMetadata) {
+ final String versionMetadata = config.outputFolder() + File.separator + ".openapi-generator" + File.separator + "VERSION";
+ File versionMetadataFile = new File(versionMetadata);
try {
- writeToFile(swaggerVersionMetadata, ImplementationVersion.read());
- files.add(swaggerVersionMetadataFile);
+ writeToFile(versionMetadata, ImplementationVersion.read());
+ files.add(versionMetadataFile);
} catch (IOException e) {
- throw new RuntimeException("Could not generate supporting file '" + swaggerVersionMetadata + "'", e);
+ throw new RuntimeException("Could not generate supporting file '" + versionMetadata + "'", e);
}
}
@@ -800,7 +800,7 @@ public class DefaultGenerator extends AbstractGenerator implements Generator {
return new File(adjustedOutputFilename);
}
- LOGGER.info("Skipped generation of " + adjustedOutputFilename + " due to rule in .swagger-codegen-ignore");
+ LOGGER.info("Skipped generation of " + adjustedOutputFilename + " due to rule in .openapi-generator-ignore");
return null;
}
diff --git a/modules/openapi-generator/src/main/java/org/openapitools/codegen/ignore/CodegenIgnoreProcessor.java b/modules/openapi-generator/src/main/java/org/openapitools/codegen/ignore/CodegenIgnoreProcessor.java
index e6be655db90..a2ed9de7ccd 100644
--- a/modules/openapi-generator/src/main/java/org/openapitools/codegen/ignore/CodegenIgnoreProcessor.java
+++ b/modules/openapi-generator/src/main/java/org/openapitools/codegen/ignore/CodegenIgnoreProcessor.java
@@ -1,6 +1,7 @@
package org.openapitools.codegen.ignore;
import com.google.common.collect.ImmutableList;
+import com.google.common.io.Files;
import org.openapitools.codegen.ignore.rules.DirectoryRule;
import org.openapitools.codegen.ignore.rules.Rule;
import org.slf4j.Logger;
@@ -12,7 +13,7 @@ import java.util.Collection;
import java.util.List;
/**
- * Presents a processing utility for parsing and evaluating files containing common ignore patterns. (.swagger-codegen-ignore)
+ * Presents a processing utility for parsing and evaluating files containing common ignore patterns. (.openapi-generator-ignore)
*/
public class CodegenIgnoreProcessor {
@@ -24,12 +25,12 @@ public class CodegenIgnoreProcessor {
private List inclusionRules = new ArrayList<>();
/**
- * Loads the default ignore file (.swagger-codegen-ignore) from the specified path.
+ * Loads the default ignore file (.openapi-generator-ignore) from the specified path.
*
* @param baseDirectory The base directory of the files to be processed. This contains the ignore file.
*/
public CodegenIgnoreProcessor(final String baseDirectory) {
- this(baseDirectory, ".swagger-codegen-ignore");
+ this(baseDirectory, ".openapi-generator-ignore");
}
/**
@@ -45,7 +46,7 @@ public class CodegenIgnoreProcessor {
if (directory.exists() && directory.isDirectory()) {
loadFromFile(targetIgnoreFile);
} else {
- LOGGER.warn("Output directory does not exist, or is inaccessible. No file (.swagger-codegen-ignore) will be evaluated.");
+ LOGGER.warn("Output directory does not exist, or is inaccessible. No file (.openapi-generator-ignore) will be evaluated.");
}
}
@@ -66,6 +67,20 @@ public class CodegenIgnoreProcessor {
} catch (IOException e) {
LOGGER.error(String.format("Could not process %s.", targetIgnoreFile.getName()), e.getMessage());
}
+ } else if (!".swagger-codegen-ignore".equals(targetIgnoreFile.getName())) {
+ final File legacyIgnoreFile = new File(targetIgnoreFile.getParentFile(), ".swagger-codegen-ignore");
+ if (legacyIgnoreFile.exists() && legacyIgnoreFile.isFile()) {
+ LOGGER.info(String.format("Legacy support: '%s' file renamed to '%s'.", legacyIgnoreFile.getName(), targetIgnoreFile.getName()));
+ try {
+ Files.move(legacyIgnoreFile, targetIgnoreFile);
+ loadFromFile(targetIgnoreFile);
+ } catch (IOException e) {
+ LOGGER.error(String.format("Could not rename file: %s", e.getMessage()));
+ }
+ } else {
+ // log info message
+ LOGGER.info(String.format("No %s file found.", targetIgnoreFile.getName()));
+ }
} else {
// log info message
LOGGER.info(String.format("No %s file found.", targetIgnoreFile.getName()));
diff --git a/modules/openapi-generator/src/main/java/org/openapitools/codegen/ignore/rules/RootedFileRule.java b/modules/openapi-generator/src/main/java/org/openapitools/codegen/ignore/rules/RootedFileRule.java
index c904b8fb072..3e7d7e9d7d6 100644
--- a/modules/openapi-generator/src/main/java/org/openapitools/codegen/ignore/rules/RootedFileRule.java
+++ b/modules/openapi-generator/src/main/java/org/openapitools/codegen/ignore/rules/RootedFileRule.java
@@ -5,7 +5,7 @@ import java.util.regex.Pattern;
/**
* A special case rule which matches files only if they're located
- * in the same directory as the .swagger-codegen-ignore file.
+ * in the same directory as the .openapi-generator-ignore file.
*/
public class RootedFileRule extends Rule {
private String definedFilename = null;
diff --git a/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/JavaCXFServerCodegen.java b/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/JavaCXFServerCodegen.java
index 6cd4bdbf497..38f84fb6380 100644
--- a/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/JavaCXFServerCodegen.java
+++ b/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/JavaCXFServerCodegen.java
@@ -167,7 +167,7 @@ public class JavaCXFServerCodegen extends AbstractJavaJAXRSServerCodegen
writeOptional(outputFolder, new SupportingFile("server/pom.mustache", "", "pom.xml"));
writeOptional(outputFolder,
- new SupportingFile("server/swagger-codegen-ignore.mustache", "", ".swagger-codegen-ignore"));
+ new SupportingFile("server/swagger-codegen-ignore.mustache", "", ".openapi-generator-ignore"));
if (this.generateSpringApplication) {
writeOptional(outputFolder, new SupportingFile("server/readme.md", "", "readme.md"));
diff --git a/modules/openapi-generator/src/main/resources/Ada/package-spec-level1.mustache b/modules/openapi-generator/src/main/resources/Ada/package-spec-level1.mustache
index 3d9f3029d14..e963c21d3bb 100644
--- a/modules/openapi-generator/src/main/resources/Ada/package-spec-level1.mustache
+++ b/modules/openapi-generator/src/main/resources/Ada/package-spec-level1.mustache
@@ -3,7 +3,7 @@
-- ------------ EDIT NOTE ------------
-- This file was generated with swagger-codegen. You can modify it to implement
-- the server. After you modify this file, you should add the following line
--- to the .swagger-codegen-ignore file:
+-- to the .openapi-generator-ignore file:
--
-- src/{{packageName}}.ads
--
diff --git a/modules/openapi-generator/src/main/resources/Ada/package-spec-level2.mustache b/modules/openapi-generator/src/main/resources/Ada/package-spec-level2.mustache
index 70c0f494f08..e1623b2b7fe 100644
--- a/modules/openapi-generator/src/main/resources/Ada/package-spec-level2.mustache
+++ b/modules/openapi-generator/src/main/resources/Ada/package-spec-level2.mustache
@@ -3,7 +3,7 @@
-- ------------ EDIT NOTE ------------
-- This file was generated with swagger-codegen. You can modify it to implement
-- the server. After you modify this file, you should add the following line
--- to the .swagger-codegen-ignore file:
+-- to the .openapi-generator-ignore file:
--
-- src/{{packageName}}.ads
--
diff --git a/modules/openapi-generator/src/main/resources/Ada/server-body.mustache b/modules/openapi-generator/src/main/resources/Ada/server-body.mustache
index 9804e347728..31f2d22d245 100644
--- a/modules/openapi-generator/src/main/resources/Ada/server-body.mustache
+++ b/modules/openapi-generator/src/main/resources/Ada/server-body.mustache
@@ -3,7 +3,7 @@
-- ------------ EDIT NOTE ------------
-- This file was generated with swagger-codegen. You can modify it to implement
-- the server. After you modify this file, you should add the following line
--- to the .swagger-codegen-ignore file:
+-- to the .openapi-generator-ignore file:
--
-- src/{{packageName}}-servers.adb
--
diff --git a/modules/openapi-generator/src/main/resources/Ada/server-spec.mustache b/modules/openapi-generator/src/main/resources/Ada/server-spec.mustache
index c57f229f383..bd9a7dfd8d0 100644
--- a/modules/openapi-generator/src/main/resources/Ada/server-spec.mustache
+++ b/modules/openapi-generator/src/main/resources/Ada/server-spec.mustache
@@ -3,7 +3,7 @@
-- ------------ EDIT NOTE ------------
-- This file was generated with swagger-codegen. You can modify it to implement
-- the server. After you modify this file, you should add the following line
--- to the .swagger-codegen-ignore file:
+-- to the .openapi-generator-ignore file:
--
-- src/{{packageName}}-servers.ads
--
diff --git a/samples/server/petstore/ze-ph/.swagger-codegen-ignore b/modules/openapi-generator/src/main/resources/_common/.openapi-generator-ignore
similarity index 89%
rename from samples/server/petstore/ze-ph/.swagger-codegen-ignore
rename to modules/openapi-generator/src/main/resources/_common/.openapi-generator-ignore
index c5fa491b4c5..6fa32398dc8 100644
--- a/samples/server/petstore/ze-ph/.swagger-codegen-ignore
+++ b/modules/openapi-generator/src/main/resources/_common/.openapi-generator-ignore
@@ -1,5 +1,5 @@
-# Swagger Codegen Ignore
-# Generated by swagger-codegen https://github.com/swagger-api/swagger-codegen
+# Openapi Generator Ignore
+# Generated by openapi-generator https://github.com/openapitools/openapi-generator
# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.
diff --git a/modules/openapi-generator/src/main/resources/csharp/GlobalConfiguration.mustache b/modules/openapi-generator/src/main/resources/csharp/GlobalConfiguration.mustache
index b218d5cc349..6afffc4ea65 100644
--- a/modules/openapi-generator/src/main/resources/csharp/GlobalConfiguration.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp/GlobalConfiguration.mustache
@@ -16,7 +16,7 @@ namespace {{packageName}}.Client
///
///
/// A customized implementation via partial class may reside in another file and may
- /// be excluded from automatic generation via a .swagger-codegen-ignore file.
+ /// be excluded from automatic generation via a .openapi-generator-ignore file.
///
public partial class GlobalConfiguration : Configuration
{
diff --git a/modules/openapi-generator/src/main/resources/flaskConnexion/dockerignore.mustache b/modules/openapi-generator/src/main/resources/flaskConnexion/dockerignore.mustache
index cdd823e64e7..f9619601908 100644
--- a/modules/openapi-generator/src/main/resources/flaskConnexion/dockerignore.mustache
+++ b/modules/openapi-generator/src/main/resources/flaskConnexion/dockerignore.mustache
@@ -1,5 +1,5 @@
.travis.yaml
-.swagger-codegen-ignore
+.openapi-generator-ignore
README.md
tox.ini
git_push.sh
diff --git a/modules/openapi-generator/src/main/resources/kotlin-server/libraries/ktor/Configuration.kt.mustache b/modules/openapi-generator/src/main/resources/kotlin-server/libraries/ktor/Configuration.kt.mustache
index 1afaa5ff9ed..bd194de35a9 100644
--- a/modules/openapi-generator/src/main/resources/kotlin-server/libraries/ktor/Configuration.kt.mustache
+++ b/modules/openapi-generator/src/main/resources/kotlin-server/libraries/ktor/Configuration.kt.mustache
@@ -13,7 +13,7 @@ import {{packageName}}.settings
/**
* Application block for [CORS] configuration.
*
- * This file may be excluded in .swagger-codegen-ignore,
+ * This file may be excluded in .openapi-generator-ignore,
* and application specific configuration can be applied in this function.
*
* See http://ktor.io/features/cors.html
@@ -37,7 +37,7 @@ internal fun ApplicationCORSConfiguration(): CORS.Configuration.() -> Unit {
/**
* Application block for [HSTS] configuration.
*
- * This file may be excluded in .swagger-codegen-ignore,
+ * This file may be excluded in .openapi-generator-ignore,
* and application specific configuration can be applied in this function.
*
* See http://ktor.io/features/hsts.html
@@ -58,7 +58,7 @@ internal fun ApplicationHstsConfiguration(): HSTS.Configuration.() -> Unit {
/**
* Application block for [Compression] configuration.
*
- * This file may be excluded in .swagger-codegen-ignore,
+ * This file may be excluded in .openapi-generator-ignore,
* and application specific configuration can be applied in this function.
*
* See http://ktor.io/features/compression.html
diff --git a/modules/openapi-generator/src/main/resources/_common/.swagger-codegen-ignore b/modules/openapi-generator/src/test/resources/integrationtests/typescript/additional-properties-expected/.openapi-generator-ignore
similarity index 100%
rename from modules/openapi-generator/src/main/resources/_common/.swagger-codegen-ignore
rename to modules/openapi-generator/src/test/resources/integrationtests/typescript/additional-properties-expected/.openapi-generator-ignore
diff --git a/modules/openapi-generator/src/test/resources/integrationtests/typescript/additional-properties-expected/.swagger-codegen-ignore b/modules/openapi-generator/src/test/resources/integrationtests/typescript/array-and-object-expected/.openapi-generator-ignore
similarity index 100%
rename from modules/openapi-generator/src/test/resources/integrationtests/typescript/additional-properties-expected/.swagger-codegen-ignore
rename to modules/openapi-generator/src/test/resources/integrationtests/typescript/array-and-object-expected/.openapi-generator-ignore
diff --git a/modules/openapi-generator/src/test/resources/integrationtests/typescript/array-and-object-expected/.swagger-codegen-ignore b/modules/openapi-generator/src/test/resources/integrationtests/typescript/node-es5-expected/.openapi-generator-ignore
similarity index 100%
rename from modules/openapi-generator/src/test/resources/integrationtests/typescript/array-and-object-expected/.swagger-codegen-ignore
rename to modules/openapi-generator/src/test/resources/integrationtests/typescript/node-es5-expected/.openapi-generator-ignore
diff --git a/modules/openapi-generator/src/test/resources/integrationtests/typescript/node-es5-expected/.swagger-codegen-ignore b/modules/openapi-generator/src/test/resources/integrationtests/typescript/petstore-expected/.openapi-generator-ignore
similarity index 100%
rename from modules/openapi-generator/src/test/resources/integrationtests/typescript/node-es5-expected/.swagger-codegen-ignore
rename to modules/openapi-generator/src/test/resources/integrationtests/typescript/petstore-expected/.openapi-generator-ignore
diff --git a/modules/openapi-generator/src/test/resources/sampleConfig.json b/modules/openapi-generator/src/test/resources/sampleConfig.json
index 5c147400d8f..17dd8ab8669 100644
--- a/modules/openapi-generator/src/test/resources/sampleConfig.json
+++ b/modules/openapi-generator/src/test/resources/sampleConfig.json
@@ -13,7 +13,7 @@
"artifactId" : "awesome-api",
"artifactVersion" : "1.2.3",
"library" : "jersey2",
- "ignoreFileOverride": "/path/to/override/.swagger-codegen-ignore",
+ "ignoreFileOverride": "/path/to/override/.openapi-generator-ignore",
"systemProperties" : {
"systemProp1" : "value1"
},
diff --git a/modules/openapi-generator/src/test/resources/integrationtests/typescript/petstore-expected/.swagger-codegen-ignore b/samples/client/petstore-security-test/csharp/SwaggerClient/.openapi-generator-ignore
similarity index 100%
rename from modules/openapi-generator/src/test/resources/integrationtests/typescript/petstore-expected/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/csharp/SwaggerClient/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/csharp/SwaggerClient/.swagger-codegen/VERSION b/samples/client/petstore-security-test/csharp/SwaggerClient/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/csharp/SwaggerClient/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/csharp/SwaggerClient/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/csharp/SwaggerClient/.swagger-codegen-ignore b/samples/client/petstore-security-test/go/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/csharp/SwaggerClient/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/go/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/go/.swagger-codegen/VERSION b/samples/client/petstore-security-test/go/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/go/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/go/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/go/.swagger-codegen-ignore b/samples/client/petstore-security-test/java/okhttp-gson/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/go/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/java/okhttp-gson/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/java/okhttp-gson/.swagger-codegen/VERSION b/samples/client/petstore-security-test/java/okhttp-gson/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/java/okhttp-gson/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/java/okhttp-gson/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/java/okhttp-gson/.swagger-codegen-ignore b/samples/client/petstore-security-test/javascript-closure-angular/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/java/okhttp-gson/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/javascript-closure-angular/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/javascript-closure-angular/.swagger-codegen/VERSION b/samples/client/petstore-security-test/javascript-closure-angular/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/javascript-closure-angular/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/javascript-closure-angular/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/javascript-closure-angular/.swagger-codegen-ignore b/samples/client/petstore-security-test/javascript/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/javascript-closure-angular/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/javascript/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/javascript/.swagger-codegen/VERSION b/samples/client/petstore-security-test/javascript/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/javascript/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/javascript/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/javascript/.swagger-codegen-ignore b/samples/client/petstore-security-test/objc/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/javascript/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/objc/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/objc/.swagger-codegen/VERSION b/samples/client/petstore-security-test/objc/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/objc/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/objc/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/objc/.swagger-codegen-ignore b/samples/client/petstore-security-test/perl/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/objc/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/perl/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/perl/.swagger-codegen/VERSION b/samples/client/petstore-security-test/perl/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/perl/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/perl/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/perl/.swagger-codegen-ignore b/samples/client/petstore-security-test/perl/deep_module_test/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/perl/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/perl/deep_module_test/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/perl/deep_module_test/.swagger-codegen/VERSION b/samples/client/petstore-security-test/perl/deep_module_test/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/perl/deep_module_test/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/perl/deep_module_test/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/perl/deep_module_test/.swagger-codegen-ignore b/samples/client/petstore-security-test/php/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/perl/deep_module_test/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/php/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/php/.swagger-codegen/VERSION b/samples/client/petstore-security-test/php/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/php/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/php/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/php/.swagger-codegen-ignore b/samples/client/petstore-security-test/python/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/php/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/python/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/python/.swagger-codegen/VERSION b/samples/client/petstore-security-test/python/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/python/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/python/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/python/.swagger-codegen-ignore b/samples/client/petstore-security-test/qt5cpp/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/python/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/qt5cpp/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/qt5cpp/.swagger-codegen/VERSION b/samples/client/petstore-security-test/qt5cpp/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/qt5cpp/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/qt5cpp/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/qt5cpp/.swagger-codegen-ignore b/samples/client/petstore-security-test/ruby/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/qt5cpp/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/ruby/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/ruby/.swagger-codegen/VERSION b/samples/client/petstore-security-test/ruby/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/ruby/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/ruby/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/ruby/.swagger-codegen-ignore b/samples/client/petstore-security-test/scala/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/ruby/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/scala/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/scala/.swagger-codegen/VERSION b/samples/client/petstore-security-test/scala/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/scala/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/scala/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/scala/.swagger-codegen-ignore b/samples/client/petstore-security-test/swift/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/scala/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/swift/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/swift/.swagger-codegen/VERSION b/samples/client/petstore-security-test/swift/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/swift/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/swift/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/swift/.swagger-codegen-ignore b/samples/client/petstore-security-test/typescript-angular/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/swift/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/typescript-angular/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/typescript-angular/.swagger-codegen/VERSION b/samples/client/petstore-security-test/typescript-angular/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/typescript-angular/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/typescript-angular/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/typescript-angular/.swagger-codegen-ignore b/samples/client/petstore-security-test/typescript-angular2/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/typescript-angular/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/typescript-angular2/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/typescript-angular2/.swagger-codegen/VERSION b/samples/client/petstore-security-test/typescript-angular2/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/typescript-angular2/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/typescript-angular2/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/typescript-angular2/.swagger-codegen-ignore b/samples/client/petstore-security-test/typescript-fetch/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/typescript-angular2/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/typescript-fetch/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/typescript-fetch/.swagger-codegen/VERSION b/samples/client/petstore-security-test/typescript-fetch/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/typescript-fetch/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/typescript-fetch/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/typescript-fetch/.swagger-codegen-ignore b/samples/client/petstore-security-test/typescript-inversify/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/typescript-fetch/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/typescript-inversify/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/typescript-inversify/.swagger-codegen/VERSION b/samples/client/petstore-security-test/typescript-inversify/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/typescript-inversify/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/typescript-inversify/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/typescript-inversify/.swagger-codegen-ignore b/samples/client/petstore-security-test/typescript-jquery/default/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/typescript-inversify/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/typescript-jquery/default/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/typescript-jquery/default/.swagger-codegen/VERSION b/samples/client/petstore-security-test/typescript-jquery/default/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/typescript-jquery/default/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/typescript-jquery/default/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/typescript-jquery/default/.swagger-codegen-ignore b/samples/client/petstore-security-test/typescript-jquery/npm/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/typescript-jquery/default/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/typescript-jquery/npm/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/typescript-jquery/npm/.swagger-codegen/VERSION b/samples/client/petstore-security-test/typescript-jquery/npm/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/typescript-jquery/npm/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/typescript-jquery/npm/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/typescript-jquery/npm/.swagger-codegen-ignore b/samples/client/petstore-security-test/typescript-node/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/typescript-jquery/npm/.swagger-codegen-ignore
rename to samples/client/petstore-security-test/typescript-node/.openapi-generator-ignore
diff --git a/samples/client/petstore-security-test/typescript-node/.swagger-codegen/VERSION b/samples/client/petstore-security-test/typescript-node/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore-security-test/typescript-node/.swagger-codegen/VERSION
rename to samples/client/petstore-security-test/typescript-node/.openapi-generator/VERSION
diff --git a/samples/client/petstore-security-test/typescript-node/.swagger-codegen-ignore b/samples/client/petstore/R/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore-security-test/typescript-node/.swagger-codegen-ignore
rename to samples/client/petstore/R/.openapi-generator-ignore
diff --git a/samples/client/petstore/R/.swagger-codegen/VERSION b/samples/client/petstore/R/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/R/.swagger-codegen/VERSION
rename to samples/client/petstore/R/.openapi-generator/VERSION
diff --git a/samples/client/petstore/ada/.swagger-codegen-ignore b/samples/client/petstore/ada/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/ada/.swagger-codegen-ignore
rename to samples/client/petstore/ada/.openapi-generator-ignore
diff --git a/samples/client/petstore/ada/.swagger-codegen/VERSION b/samples/client/petstore/ada/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/ada/.swagger-codegen/VERSION
rename to samples/client/petstore/ada/.openapi-generator/VERSION
diff --git a/samples/client/petstore/R/.swagger-codegen-ignore b/samples/client/petstore/akka-scala/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/R/.swagger-codegen-ignore
rename to samples/client/petstore/akka-scala/.openapi-generator-ignore
diff --git a/samples/client/petstore/akka-scala/.swagger-codegen/VERSION b/samples/client/petstore/akka-scala/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/akka-scala/.swagger-codegen/VERSION
rename to samples/client/petstore/akka-scala/.openapi-generator/VERSION
diff --git a/samples/client/petstore/akka-scala/.swagger-codegen-ignore b/samples/client/petstore/android/httpclient/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/akka-scala/.swagger-codegen-ignore
rename to samples/client/petstore/android/httpclient/.openapi-generator-ignore
diff --git a/samples/client/petstore/android/httpclient/.swagger-codegen/VERSION b/samples/client/petstore/android/httpclient/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/android/httpclient/.swagger-codegen/VERSION
rename to samples/client/petstore/android/httpclient/.openapi-generator/VERSION
diff --git a/samples/client/petstore/android/httpclient/.swagger-codegen-ignore b/samples/client/petstore/android/volley/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/android/httpclient/.swagger-codegen-ignore
rename to samples/client/petstore/android/volley/.openapi-generator-ignore
diff --git a/samples/client/petstore/android/volley/.swagger-codegen/VERSION b/samples/client/petstore/android/volley/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/android/volley/.swagger-codegen/VERSION
rename to samples/client/petstore/android/volley/.openapi-generator/VERSION
diff --git a/samples/client/petstore/android/volley/.swagger-codegen-ignore b/samples/client/petstore/apex/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/android/volley/.swagger-codegen-ignore
rename to samples/client/petstore/apex/.openapi-generator-ignore
diff --git a/samples/client/petstore/apex/.swagger-codegen/VERSION b/samples/client/petstore/apex/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/apex/.swagger-codegen/VERSION
rename to samples/client/petstore/apex/.openapi-generator/VERSION
diff --git a/samples/client/petstore/apex/.swagger-codegen-ignore b/samples/client/petstore/async-scala/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/apex/.swagger-codegen-ignore
rename to samples/client/petstore/async-scala/.openapi-generator-ignore
diff --git a/samples/client/petstore/async-scala/.swagger-codegen/VERSION b/samples/client/petstore/async-scala/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/async-scala/.swagger-codegen/VERSION
rename to samples/client/petstore/async-scala/.openapi-generator/VERSION
diff --git a/samples/client/petstore/async-scala/.swagger-codegen-ignore b/samples/client/petstore/bash/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/async-scala/.swagger-codegen-ignore
rename to samples/client/petstore/bash/.openapi-generator-ignore
diff --git a/samples/client/petstore/bash/.swagger-codegen/VERSION b/samples/client/petstore/bash/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/bash/.swagger-codegen/VERSION
rename to samples/client/petstore/bash/.openapi-generator/VERSION
diff --git a/samples/client/petstore/bash/.swagger-codegen-ignore b/samples/client/petstore/clojure/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/bash/.swagger-codegen-ignore
rename to samples/client/petstore/clojure/.openapi-generator-ignore
diff --git a/samples/client/petstore/clojure/.swagger-codegen/VERSION b/samples/client/petstore/clojure/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/clojure/.swagger-codegen/VERSION
rename to samples/client/petstore/clojure/.openapi-generator/VERSION
diff --git a/samples/client/petstore/clojure/.swagger-codegen-ignore b/samples/client/petstore/cpprest/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/clojure/.swagger-codegen-ignore
rename to samples/client/petstore/cpprest/.openapi-generator-ignore
diff --git a/samples/client/petstore/cpprest/.swagger-codegen/VERSION b/samples/client/petstore/cpprest/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/cpprest/.swagger-codegen/VERSION
rename to samples/client/petstore/cpprest/.openapi-generator/VERSION
diff --git a/samples/client/petstore/cpprest/.swagger-codegen-ignore b/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/cpprest/.swagger-codegen-ignore
rename to samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/.openapi-generator-ignore
diff --git a/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/.swagger-codegen/VERSION b/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/.swagger-codegen/VERSION
rename to samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/.openapi-generator/VERSION
diff --git a/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/.swagger-codegen-ignore b/samples/client/petstore/csharp/SwaggerClient/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/.swagger-codegen-ignore
rename to samples/client/petstore/csharp/SwaggerClient/.openapi-generator-ignore
diff --git a/samples/client/petstore/csharp/SwaggerClient/.swagger-codegen/VERSION b/samples/client/petstore/csharp/SwaggerClient/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/csharp/SwaggerClient/.swagger-codegen/VERSION
rename to samples/client/petstore/csharp/SwaggerClient/.openapi-generator/VERSION
diff --git a/samples/client/petstore/csharp/SwaggerClient/.swagger-codegen-ignore b/samples/client/petstore/csharp/SwaggerClientNet35/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/csharp/SwaggerClient/.swagger-codegen-ignore
rename to samples/client/petstore/csharp/SwaggerClientNet35/.openapi-generator-ignore
diff --git a/samples/client/petstore/csharp/SwaggerClientNet35/.swagger-codegen/VERSION b/samples/client/petstore/csharp/SwaggerClientNet35/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/csharp/SwaggerClientNet35/.swagger-codegen/VERSION
rename to samples/client/petstore/csharp/SwaggerClientNet35/.openapi-generator/VERSION
diff --git a/samples/client/petstore/csharp/SwaggerClientNet35/.swagger-codegen-ignore b/samples/client/petstore/csharp/SwaggerClientNet40/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/csharp/SwaggerClientNet35/.swagger-codegen-ignore
rename to samples/client/petstore/csharp/SwaggerClientNet40/.openapi-generator-ignore
diff --git a/samples/client/petstore/csharp/SwaggerClientNet40/.swagger-codegen/VERSION b/samples/client/petstore/csharp/SwaggerClientNet40/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/csharp/SwaggerClientNet40/.swagger-codegen/VERSION
rename to samples/client/petstore/csharp/SwaggerClientNet40/.openapi-generator/VERSION
diff --git a/samples/client/petstore/csharp/SwaggerClientNet40/.swagger-codegen-ignore b/samples/client/petstore/csharp/SwaggerClientNetCoreProject/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/csharp/SwaggerClientNet40/.swagger-codegen-ignore
rename to samples/client/petstore/csharp/SwaggerClientNetCoreProject/.openapi-generator-ignore
diff --git a/samples/client/petstore/csharp/SwaggerClientNetCoreProject/.swagger-codegen/VERSION b/samples/client/petstore/csharp/SwaggerClientNetCoreProject/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/csharp/SwaggerClientNetCoreProject/.swagger-codegen/VERSION
rename to samples/client/petstore/csharp/SwaggerClientNetCoreProject/.openapi-generator/VERSION
diff --git a/samples/client/petstore/csharp/SwaggerClientNetCoreProject/.swagger-codegen-ignore b/samples/client/petstore/csharp/SwaggerClientNetStandard/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/csharp/SwaggerClientNetCoreProject/.swagger-codegen-ignore
rename to samples/client/petstore/csharp/SwaggerClientNetStandard/.openapi-generator-ignore
diff --git a/samples/client/petstore/csharp/SwaggerClientNetStandard/.swagger-codegen/VERSION b/samples/client/petstore/csharp/SwaggerClientNetStandard/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/csharp/SwaggerClientNetStandard/.swagger-codegen/VERSION
rename to samples/client/petstore/csharp/SwaggerClientNetStandard/.openapi-generator/VERSION
diff --git a/samples/client/petstore/csharp/SwaggerClientNetStandard/.swagger-codegen-ignore b/samples/client/petstore/csharp/SwaggerClientWithPropertyChanged/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/csharp/SwaggerClientNetStandard/.swagger-codegen-ignore
rename to samples/client/petstore/csharp/SwaggerClientWithPropertyChanged/.openapi-generator-ignore
diff --git a/samples/client/petstore/csharp/SwaggerClientWithPropertyChanged/.swagger-codegen/VERSION b/samples/client/petstore/csharp/SwaggerClientWithPropertyChanged/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/csharp/SwaggerClientWithPropertyChanged/.swagger-codegen/VERSION
rename to samples/client/petstore/csharp/SwaggerClientWithPropertyChanged/.openapi-generator/VERSION
diff --git a/samples/client/petstore/csharp/SwaggerClientWithPropertyChanged/.swagger-codegen-ignore b/samples/client/petstore/dart/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/csharp/SwaggerClientWithPropertyChanged/.swagger-codegen-ignore
rename to samples/client/petstore/dart/.openapi-generator-ignore
diff --git a/samples/client/petstore/dart/.swagger-codegen-ignore b/samples/client/petstore/dart/flutter_petstore/swagger/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/dart/.swagger-codegen-ignore
rename to samples/client/petstore/dart/flutter_petstore/swagger/.openapi-generator-ignore
diff --git a/samples/client/petstore/dart/flutter_petstore/swagger/.swagger-codegen/VERSION b/samples/client/petstore/dart/flutter_petstore/swagger/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/dart/flutter_petstore/swagger/.swagger-codegen/VERSION
rename to samples/client/petstore/dart/flutter_petstore/swagger/.openapi-generator/VERSION
diff --git a/samples/client/petstore/dart/flutter_petstore/swagger/.swagger-codegen-ignore b/samples/client/petstore/dart/swagger-browser-client/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/dart/flutter_petstore/swagger/.swagger-codegen-ignore
rename to samples/client/petstore/dart/swagger-browser-client/.openapi-generator-ignore
diff --git a/samples/client/petstore/dart/swagger-browser-client/.swagger-codegen/VERSION b/samples/client/petstore/dart/swagger-browser-client/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/dart/swagger-browser-client/.swagger-codegen/VERSION
rename to samples/client/petstore/dart/swagger-browser-client/.openapi-generator/VERSION
diff --git a/samples/client/petstore/dart/swagger-browser-client/.swagger-codegen-ignore b/samples/client/petstore/dart/swagger/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/dart/swagger-browser-client/.swagger-codegen-ignore
rename to samples/client/petstore/dart/swagger/.openapi-generator-ignore
diff --git a/samples/client/petstore/dart/swagger/.swagger-codegen/VERSION b/samples/client/petstore/dart/swagger/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/dart/swagger/.swagger-codegen/VERSION
rename to samples/client/petstore/dart/swagger/.openapi-generator/VERSION
diff --git a/samples/client/petstore/dart/swagger/.swagger-codegen-ignore b/samples/client/petstore/eiffel/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/dart/swagger/.swagger-codegen-ignore
rename to samples/client/petstore/eiffel/.openapi-generator-ignore
diff --git a/samples/client/petstore/eiffel/.swagger-codegen/VERSION b/samples/client/petstore/eiffel/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/eiffel/.swagger-codegen/VERSION
rename to samples/client/petstore/eiffel/.openapi-generator/VERSION
diff --git a/samples/client/petstore/eiffel/.swagger-codegen-ignore b/samples/client/petstore/elixir/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/eiffel/.swagger-codegen-ignore
rename to samples/client/petstore/elixir/.openapi-generator-ignore
diff --git a/samples/client/petstore/elixir/.swagger-codegen/VERSION b/samples/client/petstore/elixir/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/elixir/.swagger-codegen/VERSION
rename to samples/client/petstore/elixir/.openapi-generator/VERSION
diff --git a/samples/client/petstore/elixir/.swagger-codegen-ignore b/samples/client/petstore/elm/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/elixir/.swagger-codegen-ignore
rename to samples/client/petstore/elm/.openapi-generator-ignore
diff --git a/samples/client/petstore/elm/.swagger-codegen/VERSION b/samples/client/petstore/elm/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/elm/.swagger-codegen/VERSION
rename to samples/client/petstore/elm/.openapi-generator/VERSION
diff --git a/samples/client/petstore/elm/.swagger-codegen-ignore b/samples/client/petstore/erlang-client/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/elm/.swagger-codegen-ignore
rename to samples/client/petstore/erlang-client/.openapi-generator-ignore
diff --git a/samples/client/petstore/erlang-client/.swagger-codegen/VERSION b/samples/client/petstore/erlang-client/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/erlang-client/.swagger-codegen/VERSION
rename to samples/client/petstore/erlang-client/.openapi-generator/VERSION
diff --git a/samples/client/petstore/erlang-client/.swagger-codegen-ignore b/samples/client/petstore/flash/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/erlang-client/.swagger-codegen-ignore
rename to samples/client/petstore/flash/.openapi-generator-ignore
diff --git a/samples/client/petstore/flash/.swagger-codegen/VERSION b/samples/client/petstore/flash/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/flash/.swagger-codegen/VERSION
rename to samples/client/petstore/flash/.openapi-generator/VERSION
diff --git a/samples/client/petstore/flash/.swagger-codegen-ignore b/samples/client/petstore/go/go-petstore-withXml/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/flash/.swagger-codegen-ignore
rename to samples/client/petstore/go/go-petstore-withXml/.openapi-generator-ignore
diff --git a/samples/client/petstore/go/go-petstore-withXml/.swagger-codegen/VERSION b/samples/client/petstore/go/go-petstore-withXml/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/go/go-petstore-withXml/.swagger-codegen/VERSION
rename to samples/client/petstore/go/go-petstore-withXml/.openapi-generator/VERSION
diff --git a/samples/client/petstore/go/go-petstore-withXml/.swagger-codegen-ignore b/samples/client/petstore/go/go-petstore/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/go/go-petstore-withXml/.swagger-codegen-ignore
rename to samples/client/petstore/go/go-petstore/.openapi-generator-ignore
diff --git a/samples/client/petstore/go/go-petstore/.swagger-codegen/VERSION b/samples/client/petstore/go/go-petstore/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/go/go-petstore/.swagger-codegen/VERSION
rename to samples/client/petstore/go/go-petstore/.openapi-generator/VERSION
diff --git a/samples/client/petstore/go/go-petstore/.swagger-codegen-ignore b/samples/client/petstore/groovy/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/go/go-petstore/.swagger-codegen-ignore
rename to samples/client/petstore/groovy/.openapi-generator-ignore
diff --git a/samples/client/petstore/groovy/.swagger-codegen/VERSION b/samples/client/petstore/groovy/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/groovy/.swagger-codegen/VERSION
rename to samples/client/petstore/groovy/.openapi-generator/VERSION
diff --git a/samples/client/petstore/groovy/.swagger-codegen-ignore b/samples/client/petstore/haskell-http-client/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/groovy/.swagger-codegen-ignore
rename to samples/client/petstore/haskell-http-client/.openapi-generator-ignore
diff --git a/samples/client/petstore/haskell-http-client/.swagger-codegen/VERSION b/samples/client/petstore/haskell-http-client/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/haskell-http-client/.swagger-codegen/VERSION
rename to samples/client/petstore/haskell-http-client/.openapi-generator/VERSION
diff --git a/samples/client/petstore/haskell-http-client/.swagger-codegen-ignore b/samples/client/petstore/java/feign/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/haskell-http-client/.swagger-codegen-ignore
rename to samples/client/petstore/java/feign/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/feign/.swagger-codegen/VERSION b/samples/client/petstore/java/feign/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/feign/.swagger-codegen/VERSION
rename to samples/client/petstore/java/feign/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/feign/.swagger-codegen-ignore b/samples/client/petstore/java/google-api-client/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/feign/.swagger-codegen-ignore
rename to samples/client/petstore/java/google-api-client/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/google-api-client/.swagger-codegen/VERSION b/samples/client/petstore/java/google-api-client/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/google-api-client/.swagger-codegen/VERSION
rename to samples/client/petstore/java/google-api-client/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/google-api-client/.swagger-codegen-ignore b/samples/client/petstore/java/jersey1/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/google-api-client/.swagger-codegen-ignore
rename to samples/client/petstore/java/jersey1/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/jersey1/.swagger-codegen/VERSION b/samples/client/petstore/java/jersey1/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/jersey1/.swagger-codegen/VERSION
rename to samples/client/petstore/java/jersey1/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/jersey1/.swagger-codegen-ignore b/samples/client/petstore/java/jersey2-java6/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/jersey1/.swagger-codegen-ignore
rename to samples/client/petstore/java/jersey2-java6/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/jersey2-java6/.swagger-codegen/VERSION b/samples/client/petstore/java/jersey2-java6/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/jersey2-java6/.swagger-codegen/VERSION
rename to samples/client/petstore/java/jersey2-java6/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/jersey2-java6/.swagger-codegen-ignore b/samples/client/petstore/java/jersey2-java8/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/jersey2-java6/.swagger-codegen-ignore
rename to samples/client/petstore/java/jersey2-java8/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/jersey2-java8/.swagger-codegen/VERSION b/samples/client/petstore/java/jersey2-java8/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/jersey2-java8/.swagger-codegen/VERSION
rename to samples/client/petstore/java/jersey2-java8/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/jersey2-java8/.swagger-codegen-ignore b/samples/client/petstore/java/jersey2/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/jersey2-java8/.swagger-codegen-ignore
rename to samples/client/petstore/java/jersey2/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/jersey2/.swagger-codegen/VERSION b/samples/client/petstore/java/jersey2/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/jersey2/.swagger-codegen/VERSION
rename to samples/client/petstore/java/jersey2/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/jersey2/.swagger-codegen-ignore b/samples/client/petstore/java/okhttp-gson-parcelableModel/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/jersey2/.swagger-codegen-ignore
rename to samples/client/petstore/java/okhttp-gson-parcelableModel/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/.swagger-codegen/VERSION b/samples/client/petstore/java/okhttp-gson-parcelableModel/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/okhttp-gson-parcelableModel/.swagger-codegen/VERSION
rename to samples/client/petstore/java/okhttp-gson-parcelableModel/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/.swagger-codegen-ignore b/samples/client/petstore/java/okhttp-gson/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/okhttp-gson-parcelableModel/.swagger-codegen-ignore
rename to samples/client/petstore/java/okhttp-gson/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/okhttp-gson/.swagger-codegen/VERSION b/samples/client/petstore/java/okhttp-gson/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/okhttp-gson/.swagger-codegen/VERSION
rename to samples/client/petstore/java/okhttp-gson/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/okhttp-gson/.swagger-codegen-ignore b/samples/client/petstore/java/rest-assured/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/okhttp-gson/.swagger-codegen-ignore
rename to samples/client/petstore/java/rest-assured/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/rest-assured/.swagger-codegen/VERSION b/samples/client/petstore/java/rest-assured/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/rest-assured/.swagger-codegen/VERSION
rename to samples/client/petstore/java/rest-assured/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/rest-assured/.swagger-codegen-ignore b/samples/client/petstore/java/resteasy/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/rest-assured/.swagger-codegen-ignore
rename to samples/client/petstore/java/resteasy/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/resteasy/.swagger-codegen/VERSION b/samples/client/petstore/java/resteasy/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/resteasy/.swagger-codegen/VERSION
rename to samples/client/petstore/java/resteasy/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/resteasy/.swagger-codegen-ignore b/samples/client/petstore/java/resttemplate-withXml/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/resteasy/.swagger-codegen-ignore
rename to samples/client/petstore/java/resttemplate-withXml/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/resttemplate-withXml/.swagger-codegen/VERSION b/samples/client/petstore/java/resttemplate-withXml/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/resttemplate-withXml/.swagger-codegen/VERSION
rename to samples/client/petstore/java/resttemplate-withXml/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/resttemplate-withXml/.swagger-codegen-ignore b/samples/client/petstore/java/resttemplate/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/resttemplate-withXml/.swagger-codegen-ignore
rename to samples/client/petstore/java/resttemplate/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/resttemplate/.swagger-codegen/VERSION b/samples/client/petstore/java/resttemplate/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/resttemplate/.swagger-codegen/VERSION
rename to samples/client/petstore/java/resttemplate/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/resttemplate/.swagger-codegen-ignore b/samples/client/petstore/java/retrofit/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/resttemplate/.swagger-codegen-ignore
rename to samples/client/petstore/java/retrofit/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/retrofit/.swagger-codegen/VERSION b/samples/client/petstore/java/retrofit/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/retrofit/.swagger-codegen/VERSION
rename to samples/client/petstore/java/retrofit/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/retrofit/.swagger-codegen-ignore b/samples/client/petstore/java/retrofit2-play24/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/retrofit/.swagger-codegen-ignore
rename to samples/client/petstore/java/retrofit2-play24/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/retrofit2-play24/.swagger-codegen/VERSION b/samples/client/petstore/java/retrofit2-play24/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/retrofit2-play24/.swagger-codegen/VERSION
rename to samples/client/petstore/java/retrofit2-play24/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/retrofit2-play24/.swagger-codegen-ignore b/samples/client/petstore/java/retrofit2-play25/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/retrofit2-play24/.swagger-codegen-ignore
rename to samples/client/petstore/java/retrofit2-play25/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/retrofit2-play25/.swagger-codegen/VERSION b/samples/client/petstore/java/retrofit2-play25/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/retrofit2-play25/.swagger-codegen/VERSION
rename to samples/client/petstore/java/retrofit2-play25/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/retrofit2-play25/.swagger-codegen-ignore b/samples/client/petstore/java/retrofit2/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/retrofit2-play25/.swagger-codegen-ignore
rename to samples/client/petstore/java/retrofit2/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/retrofit2/.swagger-codegen/VERSION b/samples/client/petstore/java/retrofit2/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/retrofit2/.swagger-codegen/VERSION
rename to samples/client/petstore/java/retrofit2/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/retrofit2/.swagger-codegen-ignore b/samples/client/petstore/java/retrofit2rx/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/retrofit2/.swagger-codegen-ignore
rename to samples/client/petstore/java/retrofit2rx/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/retrofit2rx/.swagger-codegen/VERSION b/samples/client/petstore/java/retrofit2rx/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/retrofit2rx/.swagger-codegen/VERSION
rename to samples/client/petstore/java/retrofit2rx/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/retrofit2rx/.swagger-codegen-ignore b/samples/client/petstore/java/retrofit2rx2/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/retrofit2rx/.swagger-codegen-ignore
rename to samples/client/petstore/java/retrofit2rx2/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/retrofit2rx2/.swagger-codegen/VERSION b/samples/client/petstore/java/retrofit2rx2/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/retrofit2rx2/.swagger-codegen/VERSION
rename to samples/client/petstore/java/retrofit2rx2/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/retrofit2rx2/.swagger-codegen-ignore b/samples/client/petstore/java/vertx/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/retrofit2rx2/.swagger-codegen-ignore
rename to samples/client/petstore/java/vertx/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/vertx/.swagger-codegen/VERSION b/samples/client/petstore/java/vertx/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/vertx/.swagger-codegen/VERSION
rename to samples/client/petstore/java/vertx/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/vertx/.swagger-codegen-ignore b/samples/client/petstore/javascript-closure-angular/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/vertx/.swagger-codegen-ignore
rename to samples/client/petstore/javascript-closure-angular/.openapi-generator-ignore
diff --git a/samples/client/petstore/javascript-closure-angular/.swagger-codegen/VERSION b/samples/client/petstore/javascript-closure-angular/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/javascript-closure-angular/.swagger-codegen/VERSION
rename to samples/client/petstore/javascript-closure-angular/.openapi-generator/VERSION
diff --git a/samples/client/petstore/javascript-closure-angular/.swagger-codegen-ignore b/samples/client/petstore/javascript-es6/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/javascript-closure-angular/.swagger-codegen-ignore
rename to samples/client/petstore/javascript-es6/.openapi-generator-ignore
diff --git a/samples/client/petstore/javascript-es6/.swagger-codegen/VERSION b/samples/client/petstore/javascript-es6/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/javascript-es6/.swagger-codegen/VERSION
rename to samples/client/petstore/javascript-es6/.openapi-generator/VERSION
diff --git a/samples/client/petstore/javascript-es6/.swagger-codegen-ignore b/samples/client/petstore/javascript-promise-es6/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/javascript-es6/.swagger-codegen-ignore
rename to samples/client/petstore/javascript-promise-es6/.openapi-generator-ignore
diff --git a/samples/client/petstore/javascript-promise-es6/.swagger-codegen/VERSION b/samples/client/petstore/javascript-promise-es6/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/javascript-promise-es6/.swagger-codegen/VERSION
rename to samples/client/petstore/javascript-promise-es6/.openapi-generator/VERSION
diff --git a/samples/client/petstore/javascript-promise-es6/.swagger-codegen-ignore b/samples/client/petstore/javascript-promise/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/javascript-promise-es6/.swagger-codegen-ignore
rename to samples/client/petstore/javascript-promise/.openapi-generator-ignore
diff --git a/samples/client/petstore/javascript-promise/.swagger-codegen/VERSION b/samples/client/petstore/javascript-promise/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/javascript-promise/.swagger-codegen/VERSION
rename to samples/client/petstore/javascript-promise/.openapi-generator/VERSION
diff --git a/samples/client/petstore/javascript-promise/.swagger-codegen-ignore b/samples/client/petstore/javascript/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/javascript-promise/.swagger-codegen-ignore
rename to samples/client/petstore/javascript/.openapi-generator-ignore
diff --git a/samples/client/petstore/javascript/.swagger-codegen/VERSION b/samples/client/petstore/javascript/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/javascript/.swagger-codegen/VERSION
rename to samples/client/petstore/javascript/.openapi-generator/VERSION
diff --git a/samples/client/petstore/javascript/.swagger-codegen-ignore b/samples/client/petstore/jaxrs-cxf-client/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/javascript/.swagger-codegen-ignore
rename to samples/client/petstore/jaxrs-cxf-client/.openapi-generator-ignore
diff --git a/samples/client/petstore/jaxrs-cxf-client/.swagger-codegen/VERSION b/samples/client/petstore/jaxrs-cxf-client/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/jaxrs-cxf-client/.swagger-codegen/VERSION
rename to samples/client/petstore/jaxrs-cxf-client/.openapi-generator/VERSION
diff --git a/samples/client/petstore/jaxrs-cxf-client/src/gen/java/io/swagger/api/StoreApi.java b/samples/client/petstore/jaxrs-cxf-client/src/gen/java/io/swagger/api/StoreApi.java
index 1869292536c..db188a9f8cf 100644
--- a/samples/client/petstore/jaxrs-cxf-client/src/gen/java/io/swagger/api/StoreApi.java
+++ b/samples/client/petstore/jaxrs-cxf-client/src/gen/java/io/swagger/api/StoreApi.java
@@ -77,7 +77,6 @@ public interface StoreApi {
*/
@POST
@Path("/store/order")
- @Consumes({ "application/json" })
@Produces({ "application/xml", "application/json" })
@ApiOperation(value = "Place an order for a pet", tags={ })
@ApiResponses(value = {
diff --git a/samples/client/petstore/jaxrs-cxf-client/src/gen/java/io/swagger/api/UserApi.java b/samples/client/petstore/jaxrs-cxf-client/src/gen/java/io/swagger/api/UserApi.java
index 8de3eabb052..4c98e09c023 100644
--- a/samples/client/petstore/jaxrs-cxf-client/src/gen/java/io/swagger/api/UserApi.java
+++ b/samples/client/petstore/jaxrs-cxf-client/src/gen/java/io/swagger/api/UserApi.java
@@ -35,7 +35,6 @@ public interface UserApi {
*/
@POST
@Path("/user")
- @Consumes({ "application/json" })
@ApiOperation(value = "Create user", tags={ })
@ApiResponses(value = {
@ApiResponse(code = 200, message = "successful operation") })
@@ -47,7 +46,6 @@ public interface UserApi {
*/
@POST
@Path("/user/createWithArray")
- @Consumes({ "application/json" })
@ApiOperation(value = "Creates list of users with given input array", tags={ })
@ApiResponses(value = {
@ApiResponse(code = 200, message = "successful operation") })
@@ -59,7 +57,6 @@ public interface UserApi {
*/
@POST
@Path("/user/createWithList")
- @Consumes({ "application/json" })
@ApiOperation(value = "Creates list of users with given input array", tags={ })
@ApiResponses(value = {
@ApiResponse(code = 200, message = "successful operation") })
@@ -125,7 +122,6 @@ public interface UserApi {
*/
@PUT
@Path("/user/{username}")
- @Consumes({ "application/json" })
@ApiOperation(value = "Updated user", tags={ })
@ApiResponses(value = {
@ApiResponse(code = 400, message = "Invalid user supplied"),
diff --git a/samples/client/petstore/jaxrs-cxf-client/.swagger-codegen-ignore b/samples/client/petstore/jaxrs-cxf/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/jaxrs-cxf-client/.swagger-codegen-ignore
rename to samples/client/petstore/jaxrs-cxf/.openapi-generator-ignore
diff --git a/samples/client/petstore/jaxrs-cxf/.swagger-codegen-ignore b/samples/client/petstore/jmeter/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/jaxrs-cxf/.swagger-codegen-ignore
rename to samples/client/petstore/jmeter/.openapi-generator-ignore
diff --git a/samples/client/petstore/jmeter/.swagger-codegen/VERSION b/samples/client/petstore/jmeter/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/jmeter/.swagger-codegen/VERSION
rename to samples/client/petstore/jmeter/.openapi-generator/VERSION
diff --git a/samples/client/petstore/jmeter/.swagger-codegen-ignore b/samples/client/petstore/kotlin-string/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/jmeter/.swagger-codegen-ignore
rename to samples/client/petstore/kotlin-string/.openapi-generator-ignore
diff --git a/samples/client/petstore/kotlin-string/.swagger-codegen/VERSION b/samples/client/petstore/kotlin-string/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/kotlin-string/.swagger-codegen/VERSION
rename to samples/client/petstore/kotlin-string/.openapi-generator/VERSION
diff --git a/samples/client/petstore/kotlin-string/.swagger-codegen-ignore b/samples/client/petstore/kotlin-threetenbp/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/kotlin-string/.swagger-codegen-ignore
rename to samples/client/petstore/kotlin-threetenbp/.openapi-generator-ignore
diff --git a/samples/client/petstore/kotlin-threetenbp/.swagger-codegen/VERSION b/samples/client/petstore/kotlin-threetenbp/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/kotlin-threetenbp/.swagger-codegen/VERSION
rename to samples/client/petstore/kotlin-threetenbp/.openapi-generator/VERSION
diff --git a/samples/client/petstore/kotlin-threetenbp/.swagger-codegen-ignore b/samples/client/petstore/kotlin/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/kotlin-threetenbp/.swagger-codegen-ignore
rename to samples/client/petstore/kotlin/.openapi-generator-ignore
diff --git a/samples/client/petstore/kotlin/.swagger-codegen/VERSION b/samples/client/petstore/kotlin/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/kotlin/.swagger-codegen/VERSION
rename to samples/client/petstore/kotlin/.openapi-generator/VERSION
diff --git a/samples/client/petstore/kotlin/.swagger-codegen-ignore b/samples/client/petstore/lua/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/kotlin/.swagger-codegen-ignore
rename to samples/client/petstore/lua/.openapi-generator-ignore
diff --git a/samples/client/petstore/lua/.swagger-codegen/VERSION b/samples/client/petstore/lua/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/lua/.swagger-codegen/VERSION
rename to samples/client/petstore/lua/.openapi-generator/VERSION
diff --git a/samples/client/petstore/lua/.swagger-codegen-ignore b/samples/client/petstore/objc/core-data/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/lua/.swagger-codegen-ignore
rename to samples/client/petstore/objc/core-data/.openapi-generator-ignore
diff --git a/samples/client/petstore/objc/core-data/.swagger-codegen/VERSION b/samples/client/petstore/objc/core-data/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/objc/core-data/.swagger-codegen/VERSION
rename to samples/client/petstore/objc/core-data/.openapi-generator/VERSION
diff --git a/samples/client/petstore/objc/core-data/.swagger-codegen-ignore b/samples/client/petstore/objc/default/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/objc/core-data/.swagger-codegen-ignore
rename to samples/client/petstore/objc/default/.openapi-generator-ignore
diff --git a/samples/client/petstore/objc/default/.swagger-codegen/VERSION b/samples/client/petstore/objc/default/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/objc/default/.swagger-codegen/VERSION
rename to samples/client/petstore/objc/default/.openapi-generator/VERSION
diff --git a/samples/client/petstore/objc/default/.swagger-codegen-ignore b/samples/client/petstore/perl/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/objc/default/.swagger-codegen-ignore
rename to samples/client/petstore/perl/.openapi-generator-ignore
diff --git a/samples/client/petstore/perl/.swagger-codegen/VERSION b/samples/client/petstore/perl/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/perl/.swagger-codegen/VERSION
rename to samples/client/petstore/perl/.openapi-generator/VERSION
diff --git a/samples/client/petstore/perl/.swagger-codegen-ignore b/samples/client/petstore/php/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/perl/.swagger-codegen-ignore
rename to samples/client/petstore/php/.openapi-generator-ignore
diff --git a/samples/client/petstore/php/.swagger-codegen/VERSION b/samples/client/petstore/php/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/php/.swagger-codegen/VERSION
rename to samples/client/petstore/php/.openapi-generator/VERSION
diff --git a/samples/client/petstore/php/.swagger-codegen-ignore b/samples/client/petstore/powershell/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/php/.swagger-codegen-ignore
rename to samples/client/petstore/powershell/.openapi-generator-ignore
diff --git a/samples/client/petstore/powershell/.swagger-codegen/VERSION b/samples/client/petstore/powershell/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/powershell/.swagger-codegen/VERSION
rename to samples/client/petstore/powershell/.openapi-generator/VERSION
diff --git a/samples/client/petstore/powershell/.swagger-codegen-ignore b/samples/client/petstore/python-asyncio/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/powershell/.swagger-codegen-ignore
rename to samples/client/petstore/python-asyncio/.openapi-generator-ignore
diff --git a/samples/client/petstore/python-asyncio/.swagger-codegen/VERSION b/samples/client/petstore/python-asyncio/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/python-asyncio/.swagger-codegen/VERSION
rename to samples/client/petstore/python-asyncio/.openapi-generator/VERSION
diff --git a/samples/client/petstore/python-asyncio/.swagger-codegen-ignore b/samples/client/petstore/python-tornado/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/python-asyncio/.swagger-codegen-ignore
rename to samples/client/petstore/python-tornado/.openapi-generator-ignore
diff --git a/samples/client/petstore/python-tornado/.swagger-codegen/VERSION b/samples/client/petstore/python-tornado/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/python-tornado/.swagger-codegen/VERSION
rename to samples/client/petstore/python-tornado/.openapi-generator/VERSION
diff --git a/samples/client/petstore/python-tornado/.swagger-codegen-ignore b/samples/client/petstore/python/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/python-tornado/.swagger-codegen-ignore
rename to samples/client/petstore/python/.openapi-generator-ignore
diff --git a/samples/client/petstore/python/.swagger-codegen/VERSION b/samples/client/petstore/python/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/python/.swagger-codegen/VERSION
rename to samples/client/petstore/python/.openapi-generator/VERSION
diff --git a/samples/client/petstore/python/.swagger-codegen-ignore b/samples/client/petstore/qt5cpp/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/python/.swagger-codegen-ignore
rename to samples/client/petstore/qt5cpp/.openapi-generator-ignore
diff --git a/samples/client/petstore/qt5cpp/.swagger-codegen/VERSION b/samples/client/petstore/qt5cpp/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/qt5cpp/.swagger-codegen/VERSION
rename to samples/client/petstore/qt5cpp/.openapi-generator/VERSION
diff --git a/samples/client/petstore/qt5cpp/.swagger-codegen-ignore b/samples/client/petstore/r_test/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/qt5cpp/.swagger-codegen-ignore
rename to samples/client/petstore/r_test/.openapi-generator-ignore
diff --git a/samples/client/petstore/r_test/.swagger-codegen/VERSION b/samples/client/petstore/r_test/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/r_test/.swagger-codegen/VERSION
rename to samples/client/petstore/r_test/.openapi-generator/VERSION
diff --git a/samples/client/petstore/r_test/.swagger-codegen-ignore b/samples/client/petstore/ruby/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/r_test/.swagger-codegen-ignore
rename to samples/client/petstore/ruby/.openapi-generator-ignore
diff --git a/samples/client/petstore/ruby/.swagger-codegen/VERSION b/samples/client/petstore/ruby/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/ruby/.swagger-codegen/VERSION
rename to samples/client/petstore/ruby/.openapi-generator/VERSION
diff --git a/samples/client/petstore/ruby/.swagger-codegen-ignore b/samples/client/petstore/rust/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/ruby/.swagger-codegen-ignore
rename to samples/client/petstore/rust/.openapi-generator-ignore
diff --git a/samples/client/petstore/rust/.swagger-codegen/VERSION b/samples/client/petstore/rust/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/rust/.swagger-codegen/VERSION
rename to samples/client/petstore/rust/.openapi-generator/VERSION
diff --git a/samples/client/petstore/rust/.swagger-codegen-ignore b/samples/client/petstore/scala-gatling/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/rust/.swagger-codegen-ignore
rename to samples/client/petstore/scala-gatling/.openapi-generator-ignore
diff --git a/samples/client/petstore/scala-gatling/.swagger-codegen/VERSION b/samples/client/petstore/scala-gatling/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/scala-gatling/.swagger-codegen/VERSION
rename to samples/client/petstore/scala-gatling/.openapi-generator/VERSION
diff --git a/samples/client/petstore/scala-gatling/.swagger-codegen-ignore b/samples/client/petstore/scala/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/scala-gatling/.swagger-codegen-ignore
rename to samples/client/petstore/scala/.openapi-generator-ignore
diff --git a/samples/client/petstore/scala/.swagger-codegen/VERSION b/samples/client/petstore/scala/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/scala/.swagger-codegen/VERSION
rename to samples/client/petstore/scala/.openapi-generator/VERSION
diff --git a/samples/client/petstore/scala/.swagger-codegen-ignore b/samples/client/petstore/scalaz/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/scala/.swagger-codegen-ignore
rename to samples/client/petstore/scalaz/.openapi-generator-ignore
diff --git a/samples/client/petstore/scalaz/.swagger-codegen/VERSION b/samples/client/petstore/scalaz/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/scalaz/.swagger-codegen/VERSION
rename to samples/client/petstore/scalaz/.openapi-generator/VERSION
diff --git a/samples/client/petstore/scalaz/.swagger-codegen-ignore b/samples/client/petstore/spring-cloud/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/scalaz/.swagger-codegen-ignore
rename to samples/client/petstore/spring-cloud/.openapi-generator-ignore
diff --git a/samples/client/petstore/spring-cloud/.swagger-codegen/VERSION b/samples/client/petstore/spring-cloud/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/spring-cloud/.swagger-codegen/VERSION
rename to samples/client/petstore/spring-cloud/.openapi-generator/VERSION
diff --git a/samples/client/petstore/spring-cloud/.swagger-codegen-ignore b/samples/client/petstore/spring-stubs/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/spring-cloud/.swagger-codegen-ignore
rename to samples/client/petstore/spring-stubs/.openapi-generator-ignore
diff --git a/samples/client/petstore/spring-stubs/.swagger-codegen/VERSION b/samples/client/petstore/spring-stubs/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/spring-stubs/.swagger-codegen/VERSION
rename to samples/client/petstore/spring-stubs/.openapi-generator/VERSION
diff --git a/samples/client/petstore/spring-stubs/.swagger-codegen-ignore b/samples/client/petstore/swift-promisekit/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/spring-stubs/.swagger-codegen-ignore
rename to samples/client/petstore/swift-promisekit/.openapi-generator-ignore
diff --git a/samples/client/petstore/swift-promisekit/.swagger-codegen-ignore b/samples/client/petstore/swift/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/swift-promisekit/.swagger-codegen-ignore
rename to samples/client/petstore/swift/.openapi-generator-ignore
diff --git a/samples/client/petstore/swift/.swagger-codegen-ignore b/samples/client/petstore/swift/default/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/swift/.swagger-codegen-ignore
rename to samples/client/petstore/swift/default/.openapi-generator-ignore
diff --git a/samples/client/petstore/swift/default/.swagger-codegen/VERSION b/samples/client/petstore/swift/default/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/swift/default/.swagger-codegen/VERSION
rename to samples/client/petstore/swift/default/.openapi-generator/VERSION
diff --git a/samples/client/petstore/swift/default/.swagger-codegen-ignore b/samples/client/petstore/swift/promisekit/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/swift/default/.swagger-codegen-ignore
rename to samples/client/petstore/swift/promisekit/.openapi-generator-ignore
diff --git a/samples/client/petstore/swift/promisekit/.swagger-codegen/VERSION b/samples/client/petstore/swift/promisekit/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/swift/promisekit/.swagger-codegen/VERSION
rename to samples/client/petstore/swift/promisekit/.openapi-generator/VERSION
diff --git a/samples/client/petstore/swift/promisekit/.swagger-codegen-ignore b/samples/client/petstore/swift/rxswift/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/swift/promisekit/.swagger-codegen-ignore
rename to samples/client/petstore/swift/rxswift/.openapi-generator-ignore
diff --git a/samples/client/petstore/swift/rxswift/.swagger-codegen/VERSION b/samples/client/petstore/swift/rxswift/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/swift/rxswift/.swagger-codegen/VERSION
rename to samples/client/petstore/swift/rxswift/.openapi-generator/VERSION
diff --git a/samples/client/petstore/swift/rxswift/.swagger-codegen-ignore b/samples/client/petstore/swift3/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/swift/rxswift/.swagger-codegen-ignore
rename to samples/client/petstore/swift3/.openapi-generator-ignore
diff --git a/samples/client/petstore/swift3/.swagger-codegen-ignore b/samples/client/petstore/swift3/default/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/swift3/.swagger-codegen-ignore
rename to samples/client/petstore/swift3/default/.openapi-generator-ignore
diff --git a/samples/client/petstore/swift3/default/.swagger-codegen/VERSION b/samples/client/petstore/swift3/default/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/swift3/default/.swagger-codegen/VERSION
rename to samples/client/petstore/swift3/default/.openapi-generator/VERSION
diff --git a/samples/client/petstore/swift3/default/.swagger-codegen-ignore b/samples/client/petstore/swift3/objcCompatible/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/swift3/default/.swagger-codegen-ignore
rename to samples/client/petstore/swift3/objcCompatible/.openapi-generator-ignore
diff --git a/samples/client/petstore/swift3/objcCompatible/.swagger-codegen/VERSION b/samples/client/petstore/swift3/objcCompatible/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/swift3/objcCompatible/.swagger-codegen/VERSION
rename to samples/client/petstore/swift3/objcCompatible/.openapi-generator/VERSION
diff --git a/samples/client/petstore/swift3/objcCompatible/.swagger-codegen-ignore b/samples/client/petstore/swift3/promisekit/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/swift3/objcCompatible/.swagger-codegen-ignore
rename to samples/client/petstore/swift3/promisekit/.openapi-generator-ignore
diff --git a/samples/client/petstore/swift3/promisekit/.swagger-codegen/VERSION b/samples/client/petstore/swift3/promisekit/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/swift3/promisekit/.swagger-codegen/VERSION
rename to samples/client/petstore/swift3/promisekit/.openapi-generator/VERSION
diff --git a/samples/client/petstore/swift3/promisekit/.swagger-codegen-ignore b/samples/client/petstore/swift3/rxswift/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/swift3/promisekit/.swagger-codegen-ignore
rename to samples/client/petstore/swift3/rxswift/.openapi-generator-ignore
diff --git a/samples/client/petstore/swift3/rxswift/.swagger-codegen/VERSION b/samples/client/petstore/swift3/rxswift/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/swift3/rxswift/.swagger-codegen/VERSION
rename to samples/client/petstore/swift3/rxswift/.openapi-generator/VERSION
diff --git a/samples/client/petstore/swift3/rxswift/.swagger-codegen-ignore b/samples/client/petstore/swift3/unwraprequired/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/swift3/rxswift/.swagger-codegen-ignore
rename to samples/client/petstore/swift3/unwraprequired/.openapi-generator-ignore
diff --git a/samples/client/petstore/swift3/unwraprequired/.swagger-codegen/VERSION b/samples/client/petstore/swift3/unwraprequired/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/swift3/unwraprequired/.swagger-codegen/VERSION
rename to samples/client/petstore/swift3/unwraprequired/.openapi-generator/VERSION
diff --git a/samples/client/petstore/swift3/unwraprequired/.swagger-codegen-ignore b/samples/client/petstore/swift4/default/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/swift3/unwraprequired/.swagger-codegen-ignore
rename to samples/client/petstore/swift4/default/.openapi-generator-ignore
diff --git a/samples/client/petstore/swift4/default/.swagger-codegen/VERSION b/samples/client/petstore/swift4/default/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/swift4/default/.swagger-codegen/VERSION
rename to samples/client/petstore/swift4/default/.openapi-generator/VERSION
diff --git a/samples/client/petstore/swift4/default/.swagger-codegen-ignore b/samples/client/petstore/swift4/objcCompatible/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/swift4/default/.swagger-codegen-ignore
rename to samples/client/petstore/swift4/objcCompatible/.openapi-generator-ignore
diff --git a/samples/client/petstore/swift4/objcCompatible/.swagger-codegen/VERSION b/samples/client/petstore/swift4/objcCompatible/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/swift4/objcCompatible/.swagger-codegen/VERSION
rename to samples/client/petstore/swift4/objcCompatible/.openapi-generator/VERSION
diff --git a/samples/client/petstore/swift4/objcCompatible/.swagger-codegen-ignore b/samples/client/petstore/swift4/promisekit/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/swift4/objcCompatible/.swagger-codegen-ignore
rename to samples/client/petstore/swift4/promisekit/.openapi-generator-ignore
diff --git a/samples/client/petstore/swift4/promisekit/.swagger-codegen/VERSION b/samples/client/petstore/swift4/promisekit/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/swift4/promisekit/.swagger-codegen/VERSION
rename to samples/client/petstore/swift4/promisekit/.openapi-generator/VERSION
diff --git a/samples/client/petstore/swift4/promisekit/.swagger-codegen-ignore b/samples/client/petstore/swift4/rxswift/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/swift4/promisekit/.swagger-codegen-ignore
rename to samples/client/petstore/swift4/rxswift/.openapi-generator-ignore
diff --git a/samples/client/petstore/swift4/rxswift/.swagger-codegen/VERSION b/samples/client/petstore/swift4/rxswift/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/swift4/rxswift/.swagger-codegen/VERSION
rename to samples/client/petstore/swift4/rxswift/.openapi-generator/VERSION
diff --git a/samples/client/petstore/swift4/rxswift/.swagger-codegen-ignore b/samples/client/petstore/tizen/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/swift4/rxswift/.swagger-codegen-ignore
rename to samples/client/petstore/tizen/.openapi-generator-ignore
diff --git a/samples/client/petstore/tizen/.swagger-codegen/VERSION b/samples/client/petstore/tizen/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/tizen/.swagger-codegen/VERSION
rename to samples/client/petstore/tizen/.openapi-generator/VERSION
diff --git a/samples/client/petstore/tizen/.swagger-codegen-ignore b/samples/client/petstore/typescript-angular-v2/default/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/tizen/.swagger-codegen-ignore
rename to samples/client/petstore/typescript-angular-v2/default/.openapi-generator-ignore
diff --git a/samples/client/petstore/typescript-angular-v2/default/.swagger-codegen/VERSION b/samples/client/petstore/typescript-angular-v2/default/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/typescript-angular-v2/default/.swagger-codegen/VERSION
rename to samples/client/petstore/typescript-angular-v2/default/.openapi-generator/VERSION
diff --git a/samples/client/petstore/typescript-angular-v2/default/.swagger-codegen-ignore b/samples/client/petstore/typescript-angular-v2/npm/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/typescript-angular-v2/default/.swagger-codegen-ignore
rename to samples/client/petstore/typescript-angular-v2/npm/.openapi-generator-ignore
diff --git a/samples/client/petstore/typescript-angular-v2/npm/.swagger-codegen/VERSION b/samples/client/petstore/typescript-angular-v2/npm/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/typescript-angular-v2/npm/.swagger-codegen/VERSION
rename to samples/client/petstore/typescript-angular-v2/npm/.openapi-generator/VERSION
diff --git a/samples/client/petstore/typescript-angular-v2/npm/.swagger-codegen-ignore b/samples/client/petstore/typescript-angular-v2/with-interfaces/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/typescript-angular-v2/npm/.swagger-codegen-ignore
rename to samples/client/petstore/typescript-angular-v2/with-interfaces/.openapi-generator-ignore
diff --git a/samples/client/petstore/typescript-angular-v2/with-interfaces/.swagger-codegen/VERSION b/samples/client/petstore/typescript-angular-v2/with-interfaces/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/typescript-angular-v2/with-interfaces/.swagger-codegen/VERSION
rename to samples/client/petstore/typescript-angular-v2/with-interfaces/.openapi-generator/VERSION
diff --git a/samples/client/petstore/typescript-angular-v2/with-interfaces/.swagger-codegen-ignore b/samples/client/petstore/typescript-angular-v4.3/npm/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/typescript-angular-v2/with-interfaces/.swagger-codegen-ignore
rename to samples/client/petstore/typescript-angular-v4.3/npm/.openapi-generator-ignore
diff --git a/samples/client/petstore/typescript-angular-v4.3/npm/.swagger-codegen/VERSION b/samples/client/petstore/typescript-angular-v4.3/npm/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/typescript-angular-v4.3/npm/.swagger-codegen/VERSION
rename to samples/client/petstore/typescript-angular-v4.3/npm/.openapi-generator/VERSION
diff --git a/samples/client/petstore/typescript-angular-v4.3/npm/.swagger-codegen-ignore b/samples/client/petstore/typescript-angular-v4/npm/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/typescript-angular-v4.3/npm/.swagger-codegen-ignore
rename to samples/client/petstore/typescript-angular-v4/npm/.openapi-generator-ignore
diff --git a/samples/client/petstore/typescript-angular-v4/npm/.swagger-codegen/VERSION b/samples/client/petstore/typescript-angular-v4/npm/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/typescript-angular-v4/npm/.swagger-codegen/VERSION
rename to samples/client/petstore/typescript-angular-v4/npm/.openapi-generator/VERSION
diff --git a/samples/client/petstore/typescript-angular-v4/npm/.swagger-codegen-ignore b/samples/client/petstore/typescript-angularjs/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/typescript-angular-v4/npm/.swagger-codegen-ignore
rename to samples/client/petstore/typescript-angularjs/.openapi-generator-ignore
diff --git a/samples/client/petstore/typescript-angularjs/.swagger-codegen/VERSION b/samples/client/petstore/typescript-angularjs/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/typescript-angularjs/.swagger-codegen/VERSION
rename to samples/client/petstore/typescript-angularjs/.openapi-generator/VERSION
diff --git a/samples/client/petstore/typescript-angularjs/.swagger-codegen-ignore b/samples/client/petstore/typescript-aurelia/default/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/typescript-angularjs/.swagger-codegen-ignore
rename to samples/client/petstore/typescript-aurelia/default/.openapi-generator-ignore
diff --git a/samples/client/petstore/typescript-aurelia/default/.swagger-codegen/VERSION b/samples/client/petstore/typescript-aurelia/default/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/typescript-aurelia/default/.swagger-codegen/VERSION
rename to samples/client/petstore/typescript-aurelia/default/.openapi-generator/VERSION
diff --git a/samples/client/petstore/typescript-aurelia/default/.swagger-codegen-ignore b/samples/client/petstore/typescript-fetch/builds/default/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/typescript-aurelia/default/.swagger-codegen-ignore
rename to samples/client/petstore/typescript-fetch/builds/default/.openapi-generator-ignore
diff --git a/samples/client/petstore/typescript-fetch/builds/default/.swagger-codegen/VERSION b/samples/client/petstore/typescript-fetch/builds/default/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/typescript-fetch/builds/default/.swagger-codegen/VERSION
rename to samples/client/petstore/typescript-fetch/builds/default/.openapi-generator/VERSION
diff --git a/samples/client/petstore/typescript-fetch/builds/default/.swagger-codegen-ignore b/samples/client/petstore/typescript-fetch/builds/es6-target/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/typescript-fetch/builds/default/.swagger-codegen-ignore
rename to samples/client/petstore/typescript-fetch/builds/es6-target/.openapi-generator-ignore
diff --git a/samples/client/petstore/typescript-fetch/builds/es6-target/.swagger-codegen/VERSION b/samples/client/petstore/typescript-fetch/builds/es6-target/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/typescript-fetch/builds/es6-target/.swagger-codegen/VERSION
rename to samples/client/petstore/typescript-fetch/builds/es6-target/.openapi-generator/VERSION
diff --git a/samples/client/petstore/typescript-fetch/builds/es6-target/.swagger-codegen-ignore b/samples/client/petstore/typescript-fetch/builds/with-interfaces/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/typescript-fetch/builds/es6-target/.swagger-codegen-ignore
rename to samples/client/petstore/typescript-fetch/builds/with-interfaces/.openapi-generator-ignore
diff --git a/samples/client/petstore/typescript-fetch/builds/with-interfaces/.swagger-codegen/VERSION b/samples/client/petstore/typescript-fetch/builds/with-interfaces/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/typescript-fetch/builds/with-interfaces/.swagger-codegen/VERSION
rename to samples/client/petstore/typescript-fetch/builds/with-interfaces/.openapi-generator/VERSION
diff --git a/samples/client/petstore/typescript-fetch/builds/with-interfaces/.swagger-codegen-ignore b/samples/client/petstore/typescript-fetch/builds/with-npm-version/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/typescript-fetch/builds/with-interfaces/.swagger-codegen-ignore
rename to samples/client/petstore/typescript-fetch/builds/with-npm-version/.openapi-generator-ignore
diff --git a/samples/client/petstore/typescript-fetch/builds/with-npm-version/.swagger-codegen/VERSION b/samples/client/petstore/typescript-fetch/builds/with-npm-version/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/typescript-fetch/builds/with-npm-version/.swagger-codegen/VERSION
rename to samples/client/petstore/typescript-fetch/builds/with-npm-version/.openapi-generator/VERSION
diff --git a/samples/client/petstore/typescript-fetch/builds/with-npm-version/.swagger-codegen-ignore b/samples/client/petstore/typescript-inversify/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/typescript-fetch/builds/with-npm-version/.swagger-codegen-ignore
rename to samples/client/petstore/typescript-inversify/.openapi-generator-ignore
diff --git a/samples/client/petstore/typescript-inversify/.swagger-codegen/VERSION b/samples/client/petstore/typescript-inversify/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/typescript-inversify/.swagger-codegen/VERSION
rename to samples/client/petstore/typescript-inversify/.openapi-generator/VERSION
diff --git a/samples/client/petstore/typescript-inversify/.swagger-codegen-ignore b/samples/client/petstore/typescript-jquery/default/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/typescript-inversify/.swagger-codegen-ignore
rename to samples/client/petstore/typescript-jquery/default/.openapi-generator-ignore
diff --git a/samples/client/petstore/typescript-jquery/default/.swagger-codegen/VERSION b/samples/client/petstore/typescript-jquery/default/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/typescript-jquery/default/.swagger-codegen/VERSION
rename to samples/client/petstore/typescript-jquery/default/.openapi-generator/VERSION
diff --git a/samples/client/petstore/typescript-jquery/default/.swagger-codegen-ignore b/samples/client/petstore/typescript-jquery/npm/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/typescript-jquery/default/.swagger-codegen-ignore
rename to samples/client/petstore/typescript-jquery/npm/.openapi-generator-ignore
diff --git a/samples/client/petstore/typescript-jquery/npm/.swagger-codegen/VERSION b/samples/client/petstore/typescript-jquery/npm/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/typescript-jquery/npm/.swagger-codegen/VERSION
rename to samples/client/petstore/typescript-jquery/npm/.openapi-generator/VERSION
diff --git a/samples/client/petstore/typescript-jquery/npm/.swagger-codegen-ignore b/samples/client/petstore/typescript-node/default/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/typescript-jquery/npm/.swagger-codegen-ignore
rename to samples/client/petstore/typescript-node/default/.openapi-generator-ignore
diff --git a/samples/client/petstore/typescript-node/default/.swagger-codegen/VERSION b/samples/client/petstore/typescript-node/default/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/typescript-node/default/.swagger-codegen/VERSION
rename to samples/client/petstore/typescript-node/default/.openapi-generator/VERSION
diff --git a/samples/client/petstore/typescript-node/npm/.swagger-codegen-ignore b/samples/client/petstore/typescript-node/npm/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/typescript-node/npm/.swagger-codegen-ignore
rename to samples/client/petstore/typescript-node/npm/.openapi-generator-ignore
diff --git a/samples/client/petstore/typescript-node/npm/.swagger-codegen/VERSION b/samples/client/petstore/typescript-node/npm/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/typescript-node/npm/.swagger-codegen/VERSION
rename to samples/client/petstore/typescript-node/npm/.openapi-generator/VERSION
diff --git a/samples/client/petstore/typescript-node/default/.swagger-codegen-ignore b/samples/client/test/swift4/default/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/typescript-node/default/.swagger-codegen-ignore
rename to samples/client/test/swift4/default/.openapi-generator-ignore
diff --git a/samples/client/test/swift4/default/.swagger-codegen/VERSION b/samples/client/test/swift4/default/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/test/swift4/default/.swagger-codegen/VERSION
rename to samples/client/test/swift4/default/.openapi-generator/VERSION
diff --git a/samples/client/test/swift4/default/.swagger-codegen-ignore b/samples/config/petstore/apache2/.openapi-generator-ignore
similarity index 100%
rename from samples/client/test/swift4/default/.swagger-codegen-ignore
rename to samples/config/petstore/apache2/.openapi-generator-ignore
diff --git a/samples/config/petstore/apache2/.swagger-codegen/VERSION b/samples/config/petstore/apache2/.openapi-generator/VERSION
similarity index 100%
rename from samples/config/petstore/apache2/.swagger-codegen/VERSION
rename to samples/config/petstore/apache2/.openapi-generator/VERSION
diff --git a/samples/config/petstore/apache2/.swagger-codegen-ignore b/samples/documentation/cwiki/.openapi-generator-ignore
similarity index 100%
rename from samples/config/petstore/apache2/.swagger-codegen-ignore
rename to samples/documentation/cwiki/.openapi-generator-ignore
diff --git a/samples/documentation/cwiki/.swagger-codegen/VERSION b/samples/documentation/cwiki/.openapi-generator/VERSION
similarity index 100%
rename from samples/documentation/cwiki/.swagger-codegen/VERSION
rename to samples/documentation/cwiki/.openapi-generator/VERSION
diff --git a/samples/documentation/cwiki/.swagger-codegen-ignore b/samples/dynamic-html/.openapi-generator-ignore
similarity index 100%
rename from samples/documentation/cwiki/.swagger-codegen-ignore
rename to samples/dynamic-html/.openapi-generator-ignore
diff --git a/samples/dynamic-html/.swagger-codegen/VERSION b/samples/dynamic-html/.openapi-generator/VERSION
similarity index 100%
rename from samples/dynamic-html/.swagger-codegen/VERSION
rename to samples/dynamic-html/.openapi-generator/VERSION
diff --git a/samples/dynamic-html/.swagger-codegen-ignore b/samples/html.md/.openapi-generator-ignore
similarity index 100%
rename from samples/dynamic-html/.swagger-codegen-ignore
rename to samples/html.md/.openapi-generator-ignore
diff --git a/samples/html.md/.swagger-codegen/VERSION b/samples/html.md/.openapi-generator/VERSION
similarity index 100%
rename from samples/html.md/.swagger-codegen/VERSION
rename to samples/html.md/.openapi-generator/VERSION
diff --git a/samples/html.md/.swagger-codegen-ignore b/samples/html/.openapi-generator-ignore
similarity index 100%
rename from samples/html.md/.swagger-codegen-ignore
rename to samples/html/.openapi-generator-ignore
diff --git a/samples/html/.swagger-codegen/VERSION b/samples/html/.openapi-generator/VERSION
similarity index 100%
rename from samples/html/.swagger-codegen/VERSION
rename to samples/html/.openapi-generator/VERSION
diff --git a/samples/html/.swagger-codegen-ignore b/samples/html2/.openapi-generator-ignore
similarity index 100%
rename from samples/html/.swagger-codegen-ignore
rename to samples/html2/.openapi-generator-ignore
diff --git a/samples/html2/.swagger-codegen/VERSION b/samples/html2/.openapi-generator/VERSION
similarity index 100%
rename from samples/html2/.swagger-codegen/VERSION
rename to samples/html2/.openapi-generator/VERSION
diff --git a/samples/html2/.swagger-codegen-ignore b/samples/meta-codegen/usage/.openapi-generator-ignore
similarity index 100%
rename from samples/html2/.swagger-codegen-ignore
rename to samples/meta-codegen/usage/.openapi-generator-ignore
diff --git a/samples/meta-codegen/usage/.swagger-codegen/VERSION b/samples/meta-codegen/usage/.openapi-generator/VERSION
similarity index 100%
rename from samples/meta-codegen/usage/.swagger-codegen/VERSION
rename to samples/meta-codegen/usage/.openapi-generator/VERSION
diff --git a/samples/meta-codegen/usage/.swagger-codegen-ignore b/samples/openapi3/client/petstore/php/.openapi-generator-ignore
similarity index 100%
rename from samples/meta-codegen/usage/.swagger-codegen-ignore
rename to samples/openapi3/client/petstore/php/.openapi-generator-ignore
diff --git a/samples/openapi3/client/petstore/php/.swagger-codegen/VERSION b/samples/openapi3/client/petstore/php/.openapi-generator/VERSION
similarity index 100%
rename from samples/openapi3/client/petstore/php/.swagger-codegen/VERSION
rename to samples/openapi3/client/petstore/php/.openapi-generator/VERSION
diff --git a/samples/openapi3/client/petstore/php/.swagger-codegen-ignore b/samples/server/petstore-security-test/lumen/.openapi-generator-ignore
similarity index 100%
rename from samples/openapi3/client/petstore/php/.swagger-codegen-ignore
rename to samples/server/petstore-security-test/lumen/.openapi-generator-ignore
diff --git a/samples/server/petstore-security-test/lumen/.swagger-codegen/VERSION b/samples/server/petstore-security-test/lumen/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore-security-test/lumen/.swagger-codegen/VERSION
rename to samples/server/petstore-security-test/lumen/.openapi-generator/VERSION
diff --git a/samples/server/petstore-security-test/lumen/.swagger-codegen-ignore b/samples/server/petstore-security-test/silex/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore-security-test/lumen/.swagger-codegen-ignore
rename to samples/server/petstore-security-test/silex/.openapi-generator-ignore
diff --git a/samples/server/petstore-security-test/silex/.swagger-codegen/VERSION b/samples/server/petstore-security-test/silex/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore-security-test/silex/.swagger-codegen/VERSION
rename to samples/server/petstore-security-test/silex/.openapi-generator/VERSION
diff --git a/samples/server/petstore-security-test/silex/.swagger-codegen-ignore b/samples/server/petstore-security-test/slim/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore-security-test/silex/.swagger-codegen-ignore
rename to samples/server/petstore-security-test/slim/.openapi-generator-ignore
diff --git a/samples/server/petstore-security-test/slim/.swagger-codegen/VERSION b/samples/server/petstore-security-test/slim/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore-security-test/slim/.swagger-codegen/VERSION
rename to samples/server/petstore-security-test/slim/.openapi-generator/VERSION
diff --git a/samples/server/petstore-security-test/slim/.swagger-codegen-ignore b/samples/server/petstore/aspnetcore/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore-security-test/slim/.swagger-codegen-ignore
rename to samples/server/petstore/aspnetcore/.openapi-generator-ignore
diff --git a/samples/server/petstore/aspnetcore/.swagger-codegen/VERSION b/samples/server/petstore/aspnetcore/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/aspnetcore/.swagger-codegen/VERSION
rename to samples/server/petstore/aspnetcore/.openapi-generator/VERSION
diff --git a/samples/server/petstore/aspnetcore/.swagger-codegen-ignore b/samples/server/petstore/erlang-server/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/aspnetcore/.swagger-codegen-ignore
rename to samples/server/petstore/erlang-server/.openapi-generator-ignore
diff --git a/samples/server/petstore/erlang-server/.swagger-codegen/VERSION b/samples/server/petstore/erlang-server/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/erlang-server/.swagger-codegen/VERSION
rename to samples/server/petstore/erlang-server/.openapi-generator/VERSION
diff --git a/samples/server/petstore/erlang-server/.swagger-codegen-ignore b/samples/server/petstore/finch/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/erlang-server/.swagger-codegen-ignore
rename to samples/server/petstore/finch/.openapi-generator-ignore
diff --git a/samples/server/petstore/finch/.swagger-codegen/VERSION b/samples/server/petstore/finch/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/finch/.swagger-codegen/VERSION
rename to samples/server/petstore/finch/.openapi-generator/VERSION
diff --git a/samples/server/petstore/finch/.swagger-codegen-ignore b/samples/server/petstore/flaskConnexion-python2/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/finch/.swagger-codegen-ignore
rename to samples/server/petstore/flaskConnexion-python2/.openapi-generator-ignore
diff --git a/samples/server/petstore/flaskConnexion-python2/.swagger-codegen/VERSION b/samples/server/petstore/flaskConnexion-python2/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/flaskConnexion-python2/.swagger-codegen/VERSION
rename to samples/server/petstore/flaskConnexion-python2/.openapi-generator/VERSION
diff --git a/samples/server/petstore/flaskConnexion-python2/.swagger-codegen-ignore b/samples/server/petstore/flaskConnexion/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/flaskConnexion-python2/.swagger-codegen-ignore
rename to samples/server/petstore/flaskConnexion/.openapi-generator-ignore
diff --git a/samples/server/petstore/flaskConnexion/.swagger-codegen/VERSION b/samples/server/petstore/flaskConnexion/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/flaskConnexion/.swagger-codegen/VERSION
rename to samples/server/petstore/flaskConnexion/.openapi-generator/VERSION
diff --git a/samples/server/petstore/flaskConnexion/.swagger-codegen-ignore b/samples/server/petstore/go-api-server/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/flaskConnexion/.swagger-codegen-ignore
rename to samples/server/petstore/go-api-server/.openapi-generator-ignore
diff --git a/samples/server/petstore/go-api-server/.swagger-codegen/VERSION b/samples/server/petstore/go-api-server/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/go-api-server/.swagger-codegen/VERSION
rename to samples/server/petstore/go-api-server/.openapi-generator/VERSION
diff --git a/samples/server/petstore/go-api-server/.swagger-codegen-ignore b/samples/server/petstore/haskell-servant/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/go-api-server/.swagger-codegen-ignore
rename to samples/server/petstore/haskell-servant/.openapi-generator-ignore
diff --git a/samples/server/petstore/haskell-servant/.swagger-codegen/VERSION b/samples/server/petstore/haskell-servant/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/haskell-servant/.swagger-codegen/VERSION
rename to samples/server/petstore/haskell-servant/.openapi-generator/VERSION
diff --git a/samples/server/petstore/haskell-servant/.swagger-codegen-ignore b/samples/server/petstore/java-inflector/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/haskell-servant/.swagger-codegen-ignore
rename to samples/server/petstore/java-inflector/.openapi-generator-ignore
diff --git a/samples/server/petstore/java-inflector/.swagger-codegen/VERSION b/samples/server/petstore/java-inflector/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/java-inflector/.swagger-codegen/VERSION
rename to samples/server/petstore/java-inflector/.openapi-generator/VERSION
diff --git a/samples/server/petstore/java-msf4j/.swagger-codegen-ignore b/samples/server/petstore/java-msf4j/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/java-msf4j/.swagger-codegen-ignore
rename to samples/server/petstore/java-msf4j/.openapi-generator-ignore
diff --git a/samples/server/petstore/java-msf4j/.swagger-codegen/VERSION b/samples/server/petstore/java-msf4j/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/java-msf4j/.swagger-codegen/VERSION
rename to samples/server/petstore/java-msf4j/.openapi-generator/VERSION
diff --git a/samples/server/petstore/java-inflector/.swagger-codegen-ignore b/samples/server/petstore/java-pkmst/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/java-inflector/.swagger-codegen-ignore
rename to samples/server/petstore/java-pkmst/.openapi-generator-ignore
diff --git a/samples/server/petstore/java-pkmst/.swagger-codegen/VERSION b/samples/server/petstore/java-pkmst/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/java-pkmst/.swagger-codegen/VERSION
rename to samples/server/petstore/java-pkmst/.openapi-generator/VERSION
diff --git a/samples/server/petstore/java-pkmst/.swagger-codegen-ignore b/samples/server/petstore/java-play-framework-api-package-override/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/java-pkmst/.swagger-codegen-ignore
rename to samples/server/petstore/java-play-framework-api-package-override/.openapi-generator-ignore
diff --git a/samples/server/petstore/java-play-framework-api-package-override/.swagger-codegen/VERSION b/samples/server/petstore/java-play-framework-api-package-override/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/java-play-framework-api-package-override/.swagger-codegen/VERSION
rename to samples/server/petstore/java-play-framework-api-package-override/.openapi-generator/VERSION
diff --git a/samples/server/petstore/java-play-framework-api-package-override/.swagger-codegen-ignore b/samples/server/petstore/java-play-framework-async/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/java-play-framework-api-package-override/.swagger-codegen-ignore
rename to samples/server/petstore/java-play-framework-async/.openapi-generator-ignore
diff --git a/samples/server/petstore/java-play-framework-async/.swagger-codegen/VERSION b/samples/server/petstore/java-play-framework-async/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/java-play-framework-async/.swagger-codegen/VERSION
rename to samples/server/petstore/java-play-framework-async/.openapi-generator/VERSION
diff --git a/samples/server/petstore/java-play-framework-async/.swagger-codegen-ignore b/samples/server/petstore/java-play-framework-controller-only/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/java-play-framework-async/.swagger-codegen-ignore
rename to samples/server/petstore/java-play-framework-controller-only/.openapi-generator-ignore
diff --git a/samples/server/petstore/java-play-framework-controller-only/.swagger-codegen/VERSION b/samples/server/petstore/java-play-framework-controller-only/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/java-play-framework-controller-only/.swagger-codegen/VERSION
rename to samples/server/petstore/java-play-framework-controller-only/.openapi-generator/VERSION
diff --git a/samples/server/petstore/java-play-framework-controller-only/.swagger-codegen-ignore b/samples/server/petstore/java-play-framework-fake-endpoints/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/java-play-framework-controller-only/.swagger-codegen-ignore
rename to samples/server/petstore/java-play-framework-fake-endpoints/.openapi-generator-ignore
diff --git a/samples/server/petstore/java-play-framework-fake-endpoints/.swagger-codegen/VERSION b/samples/server/petstore/java-play-framework-fake-endpoints/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/java-play-framework-fake-endpoints/.swagger-codegen/VERSION
rename to samples/server/petstore/java-play-framework-fake-endpoints/.openapi-generator/VERSION
diff --git a/samples/server/petstore/java-play-framework-fake-endpoints/.swagger-codegen-ignore b/samples/server/petstore/java-play-framework-no-bean-validation/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/java-play-framework-fake-endpoints/.swagger-codegen-ignore
rename to samples/server/petstore/java-play-framework-no-bean-validation/.openapi-generator-ignore
diff --git a/samples/server/petstore/java-play-framework-no-bean-validation/.swagger-codegen/VERSION b/samples/server/petstore/java-play-framework-no-bean-validation/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/java-play-framework-no-bean-validation/.swagger-codegen/VERSION
rename to samples/server/petstore/java-play-framework-no-bean-validation/.openapi-generator/VERSION
diff --git a/samples/server/petstore/java-play-framework-no-bean-validation/.swagger-codegen-ignore b/samples/server/petstore/java-play-framework-no-exception-handling/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/java-play-framework-no-bean-validation/.swagger-codegen-ignore
rename to samples/server/petstore/java-play-framework-no-exception-handling/.openapi-generator-ignore
diff --git a/samples/server/petstore/java-play-framework-no-exception-handling/.swagger-codegen/VERSION b/samples/server/petstore/java-play-framework-no-exception-handling/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/java-play-framework-no-exception-handling/.swagger-codegen/VERSION
rename to samples/server/petstore/java-play-framework-no-exception-handling/.openapi-generator/VERSION
diff --git a/samples/server/petstore/java-play-framework-no-exception-handling/.swagger-codegen-ignore b/samples/server/petstore/java-play-framework-no-interface/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/java-play-framework-no-exception-handling/.swagger-codegen-ignore
rename to samples/server/petstore/java-play-framework-no-interface/.openapi-generator-ignore
diff --git a/samples/server/petstore/java-play-framework-no-interface/.swagger-codegen/VERSION b/samples/server/petstore/java-play-framework-no-interface/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/java-play-framework-no-interface/.swagger-codegen/VERSION
rename to samples/server/petstore/java-play-framework-no-interface/.openapi-generator/VERSION
diff --git a/samples/server/petstore/java-play-framework-no-interface/.swagger-codegen-ignore b/samples/server/petstore/java-play-framework-no-swagger-ui/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/java-play-framework-no-interface/.swagger-codegen-ignore
rename to samples/server/petstore/java-play-framework-no-swagger-ui/.openapi-generator-ignore
diff --git a/samples/server/petstore/java-play-framework-no-swagger-ui/.swagger-codegen/VERSION b/samples/server/petstore/java-play-framework-no-swagger-ui/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/java-play-framework-no-swagger-ui/.swagger-codegen/VERSION
rename to samples/server/petstore/java-play-framework-no-swagger-ui/.openapi-generator/VERSION
diff --git a/samples/server/petstore/java-play-framework-no-swagger-ui/.swagger-codegen-ignore b/samples/server/petstore/java-play-framework-no-wrap-calls/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/java-play-framework-no-swagger-ui/.swagger-codegen-ignore
rename to samples/server/petstore/java-play-framework-no-wrap-calls/.openapi-generator-ignore
diff --git a/samples/server/petstore/java-play-framework-no-wrap-calls/.swagger-codegen/VERSION b/samples/server/petstore/java-play-framework-no-wrap-calls/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/java-play-framework-no-wrap-calls/.swagger-codegen/VERSION
rename to samples/server/petstore/java-play-framework-no-wrap-calls/.openapi-generator/VERSION
diff --git a/samples/server/petstore/java-play-framework-no-wrap-calls/.swagger-codegen-ignore b/samples/server/petstore/java-play-framework/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/java-play-framework-no-wrap-calls/.swagger-codegen-ignore
rename to samples/server/petstore/java-play-framework/.openapi-generator-ignore
diff --git a/samples/server/petstore/java-play-framework/.swagger-codegen/VERSION b/samples/server/petstore/java-play-framework/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/java-play-framework/.swagger-codegen/VERSION
rename to samples/server/petstore/java-play-framework/.openapi-generator/VERSION
diff --git a/samples/server/petstore/java-play-framework/.swagger-codegen-ignore b/samples/server/petstore/java-vertx/async/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/java-play-framework/.swagger-codegen-ignore
rename to samples/server/petstore/java-vertx/async/.openapi-generator-ignore
diff --git a/samples/server/petstore/java-vertx/async/.swagger-codegen/VERSION b/samples/server/petstore/java-vertx/async/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/java-vertx/async/.swagger-codegen/VERSION
rename to samples/server/petstore/java-vertx/async/.openapi-generator/VERSION
diff --git a/samples/server/petstore/java-vertx/async/.swagger-codegen-ignore b/samples/server/petstore/java-vertx/rx/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/java-vertx/async/.swagger-codegen-ignore
rename to samples/server/petstore/java-vertx/rx/.openapi-generator-ignore
diff --git a/samples/server/petstore/java-vertx/rx/.swagger-codegen/VERSION b/samples/server/petstore/java-vertx/rx/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/java-vertx/rx/.swagger-codegen/VERSION
rename to samples/server/petstore/java-vertx/rx/.openapi-generator/VERSION
diff --git a/samples/server/petstore/java-vertx/rx/.swagger-codegen-ignore b/samples/server/petstore/jaxrs-cxf-annotated-base-path/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/java-vertx/rx/.swagger-codegen-ignore
rename to samples/server/petstore/jaxrs-cxf-annotated-base-path/.openapi-generator-ignore
diff --git a/samples/server/petstore/jaxrs-cxf-annotated-base-path/.swagger-codegen/VERSION b/samples/server/petstore/jaxrs-cxf-annotated-base-path/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/jaxrs-cxf-annotated-base-path/.swagger-codegen/VERSION
rename to samples/server/petstore/jaxrs-cxf-annotated-base-path/.openapi-generator/VERSION
diff --git a/samples/server/petstore/jaxrs-cxf-annotated-base-path/.swagger-codegen-ignore b/samples/server/petstore/jaxrs-cxf-cdi/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/jaxrs-cxf-annotated-base-path/.swagger-codegen-ignore
rename to samples/server/petstore/jaxrs-cxf-cdi/.openapi-generator-ignore
diff --git a/samples/server/petstore/jaxrs-cxf-cdi/.swagger-codegen/VERSION b/samples/server/petstore/jaxrs-cxf-cdi/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/jaxrs-cxf-cdi/.swagger-codegen/VERSION
rename to samples/server/petstore/jaxrs-cxf-cdi/.openapi-generator/VERSION
diff --git a/samples/server/petstore/jaxrs-cxf-cdi/.swagger-codegen-ignore b/samples/server/petstore/jaxrs-cxf-non-spring-app/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/jaxrs-cxf-cdi/.swagger-codegen-ignore
rename to samples/server/petstore/jaxrs-cxf-non-spring-app/.openapi-generator-ignore
diff --git a/samples/server/petstore/jaxrs-cxf-non-spring-app/.swagger-codegen/VERSION b/samples/server/petstore/jaxrs-cxf-non-spring-app/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/jaxrs-cxf-non-spring-app/.swagger-codegen/VERSION
rename to samples/server/petstore/jaxrs-cxf-non-spring-app/.openapi-generator/VERSION
diff --git a/samples/server/petstore/jaxrs-cxf/.swagger-codegen-ignore b/samples/server/petstore/jaxrs-cxf/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/jaxrs-cxf/.swagger-codegen-ignore
rename to samples/server/petstore/jaxrs-cxf/.openapi-generator-ignore
diff --git a/samples/server/petstore/jaxrs-cxf/.swagger-codegen/VERSION b/samples/server/petstore/jaxrs-cxf/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/jaxrs-cxf/.swagger-codegen/VERSION
rename to samples/server/petstore/jaxrs-cxf/.openapi-generator/VERSION
diff --git a/samples/server/petstore/jaxrs-cxf-non-spring-app/.swagger-codegen-ignore b/samples/server/petstore/jaxrs-datelib-j8/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/jaxrs-cxf-non-spring-app/.swagger-codegen-ignore
rename to samples/server/petstore/jaxrs-datelib-j8/.openapi-generator-ignore
diff --git a/samples/server/petstore/jaxrs-datelib-j8/.swagger-codegen/VERSION b/samples/server/petstore/jaxrs-datelib-j8/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/jaxrs-datelib-j8/.swagger-codegen/VERSION
rename to samples/server/petstore/jaxrs-datelib-j8/.openapi-generator/VERSION
diff --git a/samples/server/petstore/jaxrs-datelib-j8/.swagger-codegen-ignore b/samples/server/petstore/jaxrs-resteasy/default/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/jaxrs-datelib-j8/.swagger-codegen-ignore
rename to samples/server/petstore/jaxrs-resteasy/default/.openapi-generator-ignore
diff --git a/samples/server/petstore/jaxrs-resteasy/default/.swagger-codegen/VERSION b/samples/server/petstore/jaxrs-resteasy/default/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/jaxrs-resteasy/default/.swagger-codegen/VERSION
rename to samples/server/petstore/jaxrs-resteasy/default/.openapi-generator/VERSION
diff --git a/samples/server/petstore/jaxrs-resteasy/default/.swagger-codegen-ignore b/samples/server/petstore/jaxrs-resteasy/eap-java8/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/jaxrs-resteasy/default/.swagger-codegen-ignore
rename to samples/server/petstore/jaxrs-resteasy/eap-java8/.openapi-generator-ignore
diff --git a/samples/server/petstore/jaxrs-resteasy/eap-java8/.swagger-codegen/VERSION b/samples/server/petstore/jaxrs-resteasy/eap-java8/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/jaxrs-resteasy/eap-java8/.swagger-codegen/VERSION
rename to samples/server/petstore/jaxrs-resteasy/eap-java8/.openapi-generator/VERSION
diff --git a/samples/server/petstore/jaxrs-resteasy/eap-java8/.swagger-codegen-ignore b/samples/server/petstore/jaxrs-resteasy/eap-joda/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/jaxrs-resteasy/eap-java8/.swagger-codegen-ignore
rename to samples/server/petstore/jaxrs-resteasy/eap-joda/.openapi-generator-ignore
diff --git a/samples/server/petstore/jaxrs-resteasy/eap-joda/.swagger-codegen/VERSION b/samples/server/petstore/jaxrs-resteasy/eap-joda/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/jaxrs-resteasy/eap-joda/.swagger-codegen/VERSION
rename to samples/server/petstore/jaxrs-resteasy/eap-joda/.openapi-generator/VERSION
diff --git a/samples/server/petstore/jaxrs-resteasy/eap-joda/.swagger-codegen-ignore b/samples/server/petstore/jaxrs-resteasy/eap/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/jaxrs-resteasy/eap-joda/.swagger-codegen-ignore
rename to samples/server/petstore/jaxrs-resteasy/eap/.openapi-generator-ignore
diff --git a/samples/server/petstore/jaxrs-resteasy/eap/.swagger-codegen/VERSION b/samples/server/petstore/jaxrs-resteasy/eap/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/jaxrs-resteasy/eap/.swagger-codegen/VERSION
rename to samples/server/petstore/jaxrs-resteasy/eap/.openapi-generator/VERSION
diff --git a/samples/server/petstore/jaxrs-resteasy/eap/.swagger-codegen-ignore b/samples/server/petstore/jaxrs-resteasy/joda/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/jaxrs-resteasy/eap/.swagger-codegen-ignore
rename to samples/server/petstore/jaxrs-resteasy/joda/.openapi-generator-ignore
diff --git a/samples/server/petstore/jaxrs-resteasy/joda/.swagger-codegen/VERSION b/samples/server/petstore/jaxrs-resteasy/joda/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/jaxrs-resteasy/joda/.swagger-codegen/VERSION
rename to samples/server/petstore/jaxrs-resteasy/joda/.openapi-generator/VERSION
diff --git a/samples/server/petstore/jaxrs-resteasy/joda/.swagger-codegen-ignore b/samples/server/petstore/jaxrs-spec-interface-response/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/jaxrs-resteasy/joda/.swagger-codegen-ignore
rename to samples/server/petstore/jaxrs-spec-interface-response/.openapi-generator-ignore
diff --git a/samples/server/petstore/jaxrs-spec-interface-response/.swagger-codegen/VERSION b/samples/server/petstore/jaxrs-spec-interface-response/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/jaxrs-spec-interface-response/.swagger-codegen/VERSION
rename to samples/server/petstore/jaxrs-spec-interface-response/.openapi-generator/VERSION
diff --git a/samples/server/petstore/jaxrs-spec-interface-response/.swagger-codegen-ignore b/samples/server/petstore/jaxrs-spec-interface/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/jaxrs-spec-interface-response/.swagger-codegen-ignore
rename to samples/server/petstore/jaxrs-spec-interface/.openapi-generator-ignore
diff --git a/samples/server/petstore/jaxrs-spec-interface/.swagger-codegen/VERSION b/samples/server/petstore/jaxrs-spec-interface/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/jaxrs-spec-interface/.swagger-codegen/VERSION
rename to samples/server/petstore/jaxrs-spec-interface/.openapi-generator/VERSION
diff --git a/samples/server/petstore/jaxrs-spec-interface/.swagger-codegen-ignore b/samples/server/petstore/jaxrs-spec/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/jaxrs-spec-interface/.swagger-codegen-ignore
rename to samples/server/petstore/jaxrs-spec/.openapi-generator-ignore
diff --git a/samples/server/petstore/jaxrs-spec/.swagger-codegen/VERSION b/samples/server/petstore/jaxrs-spec/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/jaxrs-spec/.swagger-codegen/VERSION
rename to samples/server/petstore/jaxrs-spec/.openapi-generator/VERSION
diff --git a/samples/server/petstore/jaxrs-spec/.swagger-codegen-ignore b/samples/server/petstore/jaxrs/jersey1-useTags/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/jaxrs-spec/.swagger-codegen-ignore
rename to samples/server/petstore/jaxrs/jersey1-useTags/.openapi-generator-ignore
diff --git a/samples/server/petstore/jaxrs/jersey1-useTags/.swagger-codegen/VERSION b/samples/server/petstore/jaxrs/jersey1-useTags/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/jaxrs/jersey1-useTags/.swagger-codegen/VERSION
rename to samples/server/petstore/jaxrs/jersey1-useTags/.openapi-generator/VERSION
diff --git a/samples/server/petstore/jaxrs/jersey1-useTags/.swagger-codegen-ignore b/samples/server/petstore/jaxrs/jersey1/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/jaxrs/jersey1-useTags/.swagger-codegen-ignore
rename to samples/server/petstore/jaxrs/jersey1/.openapi-generator-ignore
diff --git a/samples/server/petstore/jaxrs/jersey1/.swagger-codegen/VERSION b/samples/server/petstore/jaxrs/jersey1/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/jaxrs/jersey1/.swagger-codegen/VERSION
rename to samples/server/petstore/jaxrs/jersey1/.openapi-generator/VERSION
diff --git a/samples/server/petstore/jaxrs/jersey1/.swagger-codegen-ignore b/samples/server/petstore/jaxrs/jersey2-useTags/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/jaxrs/jersey1/.swagger-codegen-ignore
rename to samples/server/petstore/jaxrs/jersey2-useTags/.openapi-generator-ignore
diff --git a/samples/server/petstore/jaxrs/jersey2-useTags/.swagger-codegen/VERSION b/samples/server/petstore/jaxrs/jersey2-useTags/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/jaxrs/jersey2-useTags/.swagger-codegen/VERSION
rename to samples/server/petstore/jaxrs/jersey2-useTags/.openapi-generator/VERSION
diff --git a/samples/server/petstore/jaxrs/jersey2-useTags/.swagger-codegen-ignore b/samples/server/petstore/jaxrs/jersey2/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/jaxrs/jersey2-useTags/.swagger-codegen-ignore
rename to samples/server/petstore/jaxrs/jersey2/.openapi-generator-ignore
diff --git a/samples/server/petstore/jaxrs/jersey2/.swagger-codegen/VERSION b/samples/server/petstore/jaxrs/jersey2/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/jaxrs/jersey2/.swagger-codegen/VERSION
rename to samples/server/petstore/jaxrs/jersey2/.openapi-generator/VERSION
diff --git a/samples/server/petstore/jaxrs/jersey2/.swagger-codegen-ignore b/samples/server/petstore/kotlin-server/ktor/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/jaxrs/jersey2/.swagger-codegen-ignore
rename to samples/server/petstore/kotlin-server/ktor/.openapi-generator-ignore
diff --git a/samples/server/petstore/kotlin-server/ktor/.swagger-codegen/VERSION b/samples/server/petstore/kotlin-server/ktor/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/kotlin-server/ktor/.swagger-codegen/VERSION
rename to samples/server/petstore/kotlin-server/ktor/.openapi-generator/VERSION
diff --git a/samples/server/petstore/kotlin-server/ktor/.swagger-codegen-ignore b/samples/server/petstore/lumen/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/kotlin-server/ktor/.swagger-codegen-ignore
rename to samples/server/petstore/lumen/.openapi-generator-ignore
diff --git a/samples/server/petstore/lumen/.swagger-codegen/VERSION b/samples/server/petstore/lumen/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/lumen/.swagger-codegen/VERSION
rename to samples/server/petstore/lumen/.openapi-generator/VERSION
diff --git a/samples/server/petstore/lumen/.swagger-codegen-ignore b/samples/server/petstore/nancyfx-async/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/lumen/.swagger-codegen-ignore
rename to samples/server/petstore/nancyfx-async/.openapi-generator-ignore
diff --git a/samples/server/petstore/nancyfx-async/.swagger-codegen/VERSION b/samples/server/petstore/nancyfx-async/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/nancyfx-async/.swagger-codegen/VERSION
rename to samples/server/petstore/nancyfx-async/.openapi-generator/VERSION
diff --git a/samples/server/petstore/nancyfx-async/.swagger-codegen-ignore b/samples/server/petstore/nancyfx/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/nancyfx-async/.swagger-codegen-ignore
rename to samples/server/petstore/nancyfx/.openapi-generator-ignore
diff --git a/samples/server/petstore/nancyfx/.swagger-codegen/VERSION b/samples/server/petstore/nancyfx/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/nancyfx/.swagger-codegen/VERSION
rename to samples/server/petstore/nancyfx/.openapi-generator/VERSION
diff --git a/samples/server/petstore/nancyfx/.swagger-codegen-ignore b/samples/server/petstore/nodejs-google-cloud-functions/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/nancyfx/.swagger-codegen-ignore
rename to samples/server/petstore/nodejs-google-cloud-functions/.openapi-generator-ignore
diff --git a/samples/server/petstore/nodejs-google-cloud-functions/.swagger-codegen/VERSION b/samples/server/petstore/nodejs-google-cloud-functions/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/nodejs-google-cloud-functions/.swagger-codegen/VERSION
rename to samples/server/petstore/nodejs-google-cloud-functions/.openapi-generator/VERSION
diff --git a/samples/server/petstore/nodejs-google-cloud-functions/.swagger-codegen-ignore b/samples/server/petstore/nodejs/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/nodejs-google-cloud-functions/.swagger-codegen-ignore
rename to samples/server/petstore/nodejs/.openapi-generator-ignore
diff --git a/samples/server/petstore/nodejs/.swagger-codegen/VERSION b/samples/server/petstore/nodejs/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/nodejs/.swagger-codegen/VERSION
rename to samples/server/petstore/nodejs/.openapi-generator/VERSION
diff --git a/samples/server/petstore/nodejs/.swagger-codegen-ignore b/samples/server/petstore/php-silex/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/nodejs/.swagger-codegen-ignore
rename to samples/server/petstore/php-silex/.openapi-generator-ignore
diff --git a/samples/server/petstore/php-silex/.swagger-codegen/VERSION b/samples/server/petstore/php-silex/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/php-silex/.swagger-codegen/VERSION
rename to samples/server/petstore/php-silex/.openapi-generator/VERSION
diff --git a/samples/server/petstore/php-silex/.swagger-codegen-ignore b/samples/server/petstore/php-symfony/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/php-silex/.swagger-codegen-ignore
rename to samples/server/petstore/php-symfony/.openapi-generator-ignore
diff --git a/samples/server/petstore/php-symfony/.swagger-codegen/VERSION b/samples/server/petstore/php-symfony/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/php-symfony/.swagger-codegen/VERSION
rename to samples/server/petstore/php-symfony/.openapi-generator/VERSION
diff --git a/samples/server/petstore/php-symfony/.swagger-codegen-ignore b/samples/server/petstore/pistache-server/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/php-symfony/.swagger-codegen-ignore
rename to samples/server/petstore/pistache-server/.openapi-generator-ignore
diff --git a/samples/server/petstore/pistache-server/.swagger-codegen/VERSION b/samples/server/petstore/pistache-server/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/pistache-server/.swagger-codegen/VERSION
rename to samples/server/petstore/pistache-server/.openapi-generator/VERSION
diff --git a/samples/server/petstore/pistache-server/.swagger-codegen-ignore b/samples/server/petstore/rails5/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/pistache-server/.swagger-codegen-ignore
rename to samples/server/petstore/rails5/.openapi-generator-ignore
diff --git a/samples/server/petstore/rails5/.swagger-codegen/VERSION b/samples/server/petstore/rails5/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/rails5/.swagger-codegen/VERSION
rename to samples/server/petstore/rails5/.openapi-generator/VERSION
diff --git a/samples/server/petstore/rails5/.swagger-codegen-ignore b/samples/server/petstore/restbed/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/rails5/.swagger-codegen-ignore
rename to samples/server/petstore/restbed/.openapi-generator-ignore
diff --git a/samples/server/petstore/restbed/.swagger-codegen/VERSION b/samples/server/petstore/restbed/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/restbed/.swagger-codegen/VERSION
rename to samples/server/petstore/restbed/.openapi-generator/VERSION
diff --git a/samples/server/petstore/restbed/.swagger-codegen-ignore b/samples/server/petstore/rust-server/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/restbed/.swagger-codegen-ignore
rename to samples/server/petstore/rust-server/.openapi-generator-ignore
diff --git a/samples/server/petstore/rust-server/.swagger-codegen/VERSION b/samples/server/petstore/rust-server/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/rust-server/.swagger-codegen/VERSION
rename to samples/server/petstore/rust-server/.openapi-generator/VERSION
diff --git a/samples/server/petstore/rust-server/.swagger-codegen-ignore b/samples/server/petstore/scala-lagom-server/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/rust-server/.swagger-codegen-ignore
rename to samples/server/petstore/scala-lagom-server/.openapi-generator-ignore
diff --git a/samples/server/petstore/scala-lagom-server/.swagger-codegen/VERSION b/samples/server/petstore/scala-lagom-server/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/scala-lagom-server/.swagger-codegen/VERSION
rename to samples/server/petstore/scala-lagom-server/.openapi-generator/VERSION
diff --git a/samples/server/petstore/scala-lagom-server/.swagger-codegen-ignore b/samples/server/petstore/scalatra/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/scala-lagom-server/.swagger-codegen-ignore
rename to samples/server/petstore/scalatra/.openapi-generator-ignore
diff --git a/samples/server/petstore/sinatra/.swagger-codegen/VERSION b/samples/server/petstore/scalatra/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/sinatra/.swagger-codegen/VERSION
rename to samples/server/petstore/scalatra/.openapi-generator/VERSION
diff --git a/samples/server/petstore/scalatra/.swagger-codegen-ignore b/samples/server/petstore/sinatra/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/scalatra/.swagger-codegen-ignore
rename to samples/server/petstore/sinatra/.openapi-generator-ignore
diff --git a/samples/server/petstore/sinatra/.openapi-generator/VERSION b/samples/server/petstore/sinatra/.openapi-generator/VERSION
new file mode 100644
index 00000000000..096bf47efe3
--- /dev/null
+++ b/samples/server/petstore/sinatra/.openapi-generator/VERSION
@@ -0,0 +1 @@
+3.0.0-SNAPSHOT
\ No newline at end of file
diff --git a/samples/server/petstore/sinatra/.swagger-codegen-ignore b/samples/server/petstore/slim/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/sinatra/.swagger-codegen-ignore
rename to samples/server/petstore/slim/.openapi-generator-ignore
diff --git a/samples/server/petstore/slim/.swagger-codegen/VERSION b/samples/server/petstore/slim/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/slim/.swagger-codegen/VERSION
rename to samples/server/petstore/slim/.openapi-generator/VERSION
diff --git a/samples/server/petstore/slim/.swagger-codegen-ignore b/samples/server/petstore/spring-mvc-j8-async/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/slim/.swagger-codegen-ignore
rename to samples/server/petstore/spring-mvc-j8-async/.openapi-generator-ignore
diff --git a/samples/server/petstore/spring-mvc-j8-async/.swagger-codegen/VERSION b/samples/server/petstore/spring-mvc-j8-async/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/spring-mvc-j8-async/.swagger-codegen/VERSION
rename to samples/server/petstore/spring-mvc-j8-async/.openapi-generator/VERSION
diff --git a/samples/server/petstore/spring-mvc-j8-async/.swagger-codegen-ignore b/samples/server/petstore/spring-mvc-j8-localdatetime/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/spring-mvc-j8-async/.swagger-codegen-ignore
rename to samples/server/petstore/spring-mvc-j8-localdatetime/.openapi-generator-ignore
diff --git a/samples/server/petstore/spring-mvc-j8-localdatetime/.swagger-codegen/VERSION b/samples/server/petstore/spring-mvc-j8-localdatetime/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/spring-mvc-j8-localdatetime/.swagger-codegen/VERSION
rename to samples/server/petstore/spring-mvc-j8-localdatetime/.openapi-generator/VERSION
diff --git a/samples/server/petstore/spring-mvc-j8-localdatetime/.swagger-codegen-ignore b/samples/server/petstore/spring-mvc/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/spring-mvc-j8-localdatetime/.swagger-codegen-ignore
rename to samples/server/petstore/spring-mvc/.openapi-generator-ignore
diff --git a/samples/server/petstore/spring-mvc/.swagger-codegen/VERSION b/samples/server/petstore/spring-mvc/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/spring-mvc/.swagger-codegen/VERSION
rename to samples/server/petstore/spring-mvc/.openapi-generator/VERSION
diff --git a/samples/server/petstore/spring-mvc/.swagger-codegen-ignore b/samples/server/petstore/springboot-beanvalidation/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/spring-mvc/.swagger-codegen-ignore
rename to samples/server/petstore/springboot-beanvalidation/.openapi-generator-ignore
diff --git a/samples/server/petstore/springboot-beanvalidation/.swagger-codegen/VERSION b/samples/server/petstore/springboot-beanvalidation/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/springboot-beanvalidation/.swagger-codegen/VERSION
rename to samples/server/petstore/springboot-beanvalidation/.openapi-generator/VERSION
diff --git a/samples/server/petstore/springboot-beanvalidation/.swagger-codegen-ignore b/samples/server/petstore/springboot-delegate-j8/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/springboot-beanvalidation/.swagger-codegen-ignore
rename to samples/server/petstore/springboot-delegate-j8/.openapi-generator-ignore
diff --git a/samples/server/petstore/springboot-delegate-j8/.swagger-codegen/VERSION b/samples/server/petstore/springboot-delegate-j8/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/springboot-delegate-j8/.swagger-codegen/VERSION
rename to samples/server/petstore/springboot-delegate-j8/.openapi-generator/VERSION
diff --git a/samples/server/petstore/springboot-delegate-j8/.swagger-codegen-ignore b/samples/server/petstore/springboot-delegate/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/springboot-delegate-j8/.swagger-codegen-ignore
rename to samples/server/petstore/springboot-delegate/.openapi-generator-ignore
diff --git a/samples/server/petstore/springboot-delegate/.swagger-codegen/VERSION b/samples/server/petstore/springboot-delegate/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/springboot-delegate/.swagger-codegen/VERSION
rename to samples/server/petstore/springboot-delegate/.openapi-generator/VERSION
diff --git a/samples/server/petstore/springboot-delegate/.swagger-codegen-ignore b/samples/server/petstore/springboot-implicitHeaders/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/springboot-delegate/.swagger-codegen-ignore
rename to samples/server/petstore/springboot-implicitHeaders/.openapi-generator-ignore
diff --git a/samples/server/petstore/springboot-implicitHeaders/.swagger-codegen/VERSION b/samples/server/petstore/springboot-implicitHeaders/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/springboot-implicitHeaders/.swagger-codegen/VERSION
rename to samples/server/petstore/springboot-implicitHeaders/.openapi-generator/VERSION
diff --git a/samples/server/petstore/springboot-implicitHeaders/.swagger-codegen-ignore b/samples/server/petstore/springboot-useoptional/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/springboot-implicitHeaders/.swagger-codegen-ignore
rename to samples/server/petstore/springboot-useoptional/.openapi-generator-ignore
diff --git a/samples/server/petstore/springboot-useoptional/.swagger-codegen/VERSION b/samples/server/petstore/springboot-useoptional/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/springboot-useoptional/.swagger-codegen/VERSION
rename to samples/server/petstore/springboot-useoptional/.openapi-generator/VERSION
diff --git a/samples/server/petstore/springboot-useoptional/.swagger-codegen-ignore b/samples/server/petstore/springboot/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/springboot-useoptional/.swagger-codegen-ignore
rename to samples/server/petstore/springboot/.openapi-generator-ignore
diff --git a/samples/server/petstore/springboot/.swagger-codegen/VERSION b/samples/server/petstore/springboot/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/springboot/.swagger-codegen/VERSION
rename to samples/server/petstore/springboot/.openapi-generator/VERSION
diff --git a/samples/server/petstore/springboot/.swagger-codegen-ignore b/samples/server/petstore/undertow/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/springboot/.swagger-codegen-ignore
rename to samples/server/petstore/undertow/.openapi-generator-ignore
diff --git a/samples/server/petstore/undertow/.swagger-codegen/VERSION b/samples/server/petstore/undertow/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/undertow/.swagger-codegen/VERSION
rename to samples/server/petstore/undertow/.openapi-generator/VERSION
diff --git a/samples/server/petstore/undertow/.swagger-codegen-ignore b/samples/server/petstore/ze-ph/.openapi-generator-ignore
similarity index 100%
rename from samples/server/petstore/undertow/.swagger-codegen-ignore
rename to samples/server/petstore/ze-ph/.openapi-generator-ignore
diff --git a/samples/server/petstore/ze-ph/.swagger-codegen/VERSION b/samples/server/petstore/ze-ph/.openapi-generator/VERSION
similarity index 100%
rename from samples/server/petstore/ze-ph/.swagger-codegen/VERSION
rename to samples/server/petstore/ze-ph/.openapi-generator/VERSION