From 06c86496875196667ed07abd1e8b42c53f06d4c3 Mon Sep 17 00:00:00 2001 From: frantuma Date: Sun, 22 May 2022 21:41:13 +0200 Subject: [PATCH] bump version to 2.1.0-SNAPSHOT (oas 3.1 support) --- modules/swagger-parser-core/pom.xml | 2 +- modules/swagger-parser-v2-converter/pom.xml | 2 +- modules/swagger-parser-v3/pom.xml | 2 +- modules/swagger-parser-v3/src/test/a.test | 99 --------------------- modules/swagger-parser/pom.xml | 2 +- pom.xml | 2 +- 6 files changed, 5 insertions(+), 104 deletions(-) delete mode 100644 modules/swagger-parser-v3/src/test/a.test diff --git a/modules/swagger-parser-core/pom.xml b/modules/swagger-parser-core/pom.xml index 9e2242ee11..e544649f2b 100644 --- a/modules/swagger-parser-core/pom.xml +++ b/modules/swagger-parser-core/pom.xml @@ -3,7 +3,7 @@ io.swagger.parser.v3 swagger-parser-project - 2.0.34-SNAPSHOT + 2.1.0-SNAPSHOT ../.. 4.0.0 diff --git a/modules/swagger-parser-v2-converter/pom.xml b/modules/swagger-parser-v2-converter/pom.xml index 84dc2a940e..2a0f981a9b 100644 --- a/modules/swagger-parser-v2-converter/pom.xml +++ b/modules/swagger-parser-v2-converter/pom.xml @@ -3,7 +3,7 @@ io.swagger.parser.v3 swagger-parser-project - 2.0.34-SNAPSHOT + 2.1.0-SNAPSHOT ../.. 4.0.0 diff --git a/modules/swagger-parser-v3/pom.xml b/modules/swagger-parser-v3/pom.xml index edef5f3ffc..805c8987af 100644 --- a/modules/swagger-parser-v3/pom.xml +++ b/modules/swagger-parser-v3/pom.xml @@ -3,7 +3,7 @@ io.swagger.parser.v3 swagger-parser-project - 2.0.34-SNAPSHOT + 2.1.0-SNAPSHOT ../.. 4.0.0 diff --git a/modules/swagger-parser-v3/src/test/a.test b/modules/swagger-parser-v3/src/test/a.test deleted file mode 100644 index 2ebe95186c..0000000000 --- a/modules/swagger-parser-v3/src/test/a.test +++ /dev/null @@ -1,99 +0,0 @@ - if (source.getReadOnly() != null){ - target.setReadOnly(source.getReadOnly()); -} - if (source.getWriteOnly() != null){ - target.setWriteOnly(source.getWriteOnly()); -} - if (source.getMaxLength() != null){ - target.setMaxLength(source.getMaxLength()); -} - if (source.get$anchor() != null){ - target.set$anchor(source.get$anchor()); -} - if (source.get$comment() != null){ - target.set$comment(source.get$comment()); -} - if (source.get$id() != null){ - target.set$id(source.get$id()); -} - if (source.get$schema() != null){ - target.set$schema(source.get$schema()); -} - if (source.getContentEncoding() != null){ - target.setContentEncoding(source.getContentEncoding()); -} - if (source.getContentMediaType() != null){ - target.setContentMediaType(source.getContentMediaType()); -} - if (source.getDefault() != null){ - target.setDefault(source.getDefault()); -} - if (source.getDependentRequired() != null){ - target.setDependentRequired(source.getDependentRequired()); -} - if (source.getDeprecated() != null){ - target.setDeprecated(source.getDeprecated()); -} - if (source.getDiscriminator() != null){ - target.setDiscriminator(source.getDiscriminator()); -} - if (source.getExample() != null){ - target.setExample(source.getExample()); -} - if (source.getExamples() != null){ - target.setExamples(source.getExamples()); -} - if (source.getExclusiveMaximum() != null){ - target.setExclusiveMaximum(source.getExclusiveMaximum()); -} - if (source.getExclusiveMaximumValue() != null){ - target.setExclusiveMaximumValue(source.getExclusiveMaximumValue()); -} - if (source.getExclusiveMinimum() != null){ - target.setExclusiveMinimum(source.getExclusiveMinimum()); -} - if (source.getExclusiveMinimumValue() != null){ - target.setExclusiveMinimumValue(source.getExclusiveMinimumValue()); -} - if (source.getExtensions() != null){ - target.setExtensions(source.getExtensions()); -} - if (source.getExternalDocs() != null){ - target.setExternalDocs(source.getExternalDocs()); -} - if (source.getMaxContains() != null){ - target.setMaxContains(source.getMaxContains()); -} - if (source.getMaximum() != null){ - target.setMaximum(source.getMaximum()); -} - if (source.getMaxItems() != null){ - target.setMaxItems(source.getMaxItems()); -} - if (source.getMaxProperties() != null){ - target.setMaxProperties(source.getMaxProperties()); -} - if (source.getMinContains() != null){ - target.setMinContains(source.getMinContains()); -} - if (source.getMinItems() != null){ - target.setMinItems(source.getMinItems()); -} - if (source.getMinProperties() != null){ - target.setMinProperties(source.getMinProperties()); -} - if (source.getMultipleOf() != null){ - target.setMultipleOf(source.getMultipleOf()); -} - if (source.getNullable() != null){ - target.setNullable(source.getNullable()); -} - if (source.getPropertyNames() != null){ - target.setPropertyNames(source.getPropertyNames()); -} - if (source.getTitle() != null){ - target.setTitle(source.getTitle()); -} - if (source.getUniqueItems() != null){ - target.setUniqueItems(source.getUniqueItems()); -} diff --git a/modules/swagger-parser/pom.xml b/modules/swagger-parser/pom.xml index 6344dc0366..0434c6c6ea 100644 --- a/modules/swagger-parser/pom.xml +++ b/modules/swagger-parser/pom.xml @@ -3,7 +3,7 @@ io.swagger.parser.v3 swagger-parser-project - 2.0.34-SNAPSHOT + 2.1.0-SNAPSHOT ../.. 4.0.0 diff --git a/pom.xml b/pom.xml index a45541f80e..f5413e0fa1 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ 4.0.0 io.swagger.parser.v3 swagger-parser-project - 2.0.34-SNAPSHOT + 2.1.0-SNAPSHOT pom swagger-parser-project