Update version to 4.0.2-SNAPSHOT (#3047)

* Update version to 4.0.2-SNAPSHOT

* Update samples

* Change AppVeyor script (test of gradle sample)

* Fix release version bump script (gradle plugin, sample poms)

* Include sonatype snapshots in maven examples which reference 4.0.2-SNAPSHOT
This commit is contained in:
Jérémie Bresson 2019-06-02 03:32:44 +02:00 committed by Jim Schubert
parent 7ecc99192d
commit dc81574f2b
768 changed files with 797 additions and 768 deletions

View File

@ -30,7 +30,6 @@ install:
- cmd: SET M2_HOME=C:\maven\apache-maven-3.2.5
- cmd: java -version
- cmd: gradle -v
- cmd: gradle -b modules\openapi-generator-gradle-plugin\samples\local-spec\build.gradle buildGoSdk --info
- cmd: dir/w
- git clone https://github.com/wing328/swagger-samples
- ps: Start-Process -FilePath 'C:\maven\apache-maven-3.2.5\bin\mvn' -ArgumentList 'jetty:run' -WorkingDirectory "$env:appveyor_build_folder\swagger-samples\java\java-jersey-jaxrs-ci"
@ -50,6 +49,8 @@ build_script:
- msbuild samples\client\petstore\csharp\OpenAPIClientNetStandard\Org.OpenAPITools.sln /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
# install openapi-generator locally
- mvn clean install --quiet
# run the locally installed openapi-generator-gradle-plugin
- gradle -PopenApiGeneratorVersion=4.0.2-SNAPSHOT -b modules\openapi-generator-gradle-plugin\samples\local-spec\build.gradle buildGoSdk --info
test_script:
# restore test-related files
- copy /b/v/y CI\samples.ci\client\petstore\csharp\OpenAPIClient\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj samples\client\petstore\csharp\OpenAPIClient\src\Org.OpenAPITools.Test\Org.OpenAPITools.Test.csproj

View File

@ -33,8 +33,10 @@ fi
echo "Release preparation: replacing $FROM with $TO in different files"
# This script assumes the files defined here have a version surrounded by angle brackets within an xml node.
# For example, >4.0.0< becomes >4.0.1-SNAPSHOT<.
# Verify the sed command below against a file before adding here.
declare -a files=("modules/openapi-generator-cli/pom.xml"
"modules/openapi-generator-gradle-plugin/gradle.properties"
"modules/openapi-generator-gradle-plugin/pom.xml"
"modules/openapi-generator-core/pom.xml"
"modules/openapi-generator-maven-plugin/pom.xml"

View File

@ -34,10 +34,12 @@ fi
echo "Release preparation: replacing $FROM with $TO in different files"
declare -a files=("modules/openapi-generator-maven-plugin/README.md"
"modules/openapi-generator-maven-plugin/examples/multi-module/java-client/pom.xml"
"modules/openapi-generator-maven-plugin/examples/java-client.xml"
"modules/openapi-generator-maven-plugin/examples/non-java-invalid-spec.xml"
"modules/openapi-generator-maven-plugin/examples/non-java.xml"
"modules/openapi-generator-gradle-plugin/README.adoc"
"modules/openapi-generator-gradle-plugin/gradle.properties"
"modules/openapi-generator-gradle-plugin/samples/local-spec/gradle.properties"
"modules/openapi-generator-gradle-plugin/samples/local-spec/build.gradle"
"modules/openapi-generator-gradle-plugin/samples/local-spec/README.md"

View File

@ -3,7 +3,7 @@
<parent>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-project</artifactId>
<version>4.0.1</version>
<version>4.0.2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -5,7 +5,7 @@
<parent>
<artifactId>openapi-generator-project</artifactId>
<groupId>org.openapitools</groupId>
<version>4.0.1</version>
<version>4.0.2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -1,4 +1,4 @@
openApiGeneratorVersion=4.0.1-SNAPSHOT
openApiGeneratorVersion=4.0.2-SNAPSHOT
# BEGIN placeholders
# these are just placeholders to allow contributors to build directly

View File

@ -3,7 +3,7 @@
<parent>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-project</artifactId>
<version>4.0.1</version>
<version>4.0.2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -12,7 +12,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>4.0.1</version>
<version>4.0.2-SNAPSHOT</version>
<executions>
<execution>
<goals>
@ -50,6 +50,12 @@
</plugin>
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<!-- dependencies are needed for the client being generated -->

View File

@ -18,7 +18,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>4.0.0</version>
<version>4.0.2-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
@ -63,6 +63,12 @@
</plugin>
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<!-- dependencies are needed for the client being generated -->

View File

@ -12,7 +12,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>4.0.1</version>
<version>4.0.2-SNAPSHOT</version>
<executions>
<execution>
<goals>
@ -31,4 +31,10 @@
</plugin>
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</pluginRepository>
</pluginRepositories>
</project>

View File

@ -12,7 +12,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>4.0.1</version>
<version>4.0.2-SNAPSHOT</version>
<executions>
<execution>
<goals>
@ -30,4 +30,10 @@
</plugin>
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</pluginRepository>
</pluginRepositories>
</project>

View File

@ -4,7 +4,7 @@
<parent>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-project</artifactId>
<version>4.0.1</version>
<version>4.0.2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>openapi-generator-maven-plugin</artifactId>

View File

@ -3,7 +3,7 @@
<parent>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-project</artifactId>
<version>4.0.1</version>
<version>4.0.2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>openapi-generator-online</artifactId>

View File

@ -3,7 +3,7 @@
<parent>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-project</artifactId>
<version>4.0.1</version>
<version>4.0.2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@ -313,7 +313,7 @@
<dependency>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-core</artifactId>
<version>4.0.1</version>
<version>4.0.2-SNAPSHOT</version>
</dependency>
</dependencies>
<repositories>

View File

@ -9,7 +9,7 @@
<artifactId>openapi-generator-project</artifactId>
<packaging>pom</packaging>
<name>openapi-generator-project</name>
<version>4.0.1</version>
<version>4.0.2-SNAPSHOT</version>
<url>https://github.com/openapitools/openapi-generator</url>
<scm>
<connection>scm:git:git@github.com:openapitools/openapi-generator.git</connection>

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -1 +1 @@
4.0.1-SNAPSHOT
4.0.2-SNAPSHOT

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

View File

@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.1-SNAPSHOT
* OpenAPI Generator version: 4.0.2-SNAPSHOT
*
* Do not edit the class manually.
*

Some files were not shown because too many files have changed in this diff Show More