forked from loafle/openapi-generator-original
* Save work-in-progress * Incoming param handling generating well exc. for file upload * Revise generated test for v3 vs v4 differences * Leave details of multi-part handling to the user for now * change default version to use the highest version known * SE client changes for Helidon 4 * A few fixes; add new v4 SE samples * Fix v3/v4 routing prep * Improve version handling if web site is inaccessible; add test * Reworking parameter conversion and required and validation handling * Add generation of a return value record per response for each operation * Improvements to the result record generation * More changes * Remove change in whitespace in v3 output * More progress on parameter handling * WIP - refactor parameter-returning methods to inner class along with return records * Reorg of op helpers * Use no-op for handling map in path, query, header, cookie - need to revise later * Binary form param handling * Clean-up and consistency check bt useAbstractClass and not * Improve result builders * Add new samples files * Fix a few issues * Update samples after rebase; add build steps for v3 and v4 uac github actions * Remove v3 se useAbstractClass test - creates some bad code * Generated doc updates * Fix missing newline * Improve Javadoc for generated Result; add convenience Result.send method * Add bean val. for body param if needed * Restructure generated records for declared responses; add Generated annotation selectively * Fix typo * In sample generation, force a stable generatorVersion value to avoid confusing builds and up-to-date samples checking * Fix up white space in older generation * Generate PartsUtils only with useAbstractClass = true * Adopt some review comments; more to come * Review comments; notably, switch to using the first path segment to group operations rather than the tags items * Improve status handling a bit * Add new generated sample files * Add missing new samples files * Quite a few updates, esp. to generated samples * New config file for sample * Updates samples * Add updates to .openapi-generator/FILES contents
104 lines
3.8 KiB
XML
104 lines
3.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>io.helidon.applications</groupId>
|
|
<artifactId>helidon-se</artifactId>
|
|
<version>3.2.7</version>
|
|
<relativePath/>
|
|
</parent>
|
|
<groupId>org.openapitools</groupId>
|
|
<artifactId>petstore-helidon-server-se</artifactId>
|
|
<version>1.0.0</version>
|
|
<name>petstore-helidon-server-se</name>
|
|
<description>This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\</description>
|
|
|
|
<properties>
|
|
<mainClass>org.openapitools.server.Main</mainClass>
|
|
<version.jackson.databind.nullable>0.2.6</version.jackson.databind.nullable>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>jakarta.validation</groupId>
|
|
<artifactId>jakarta.validation-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.webserver</groupId>
|
|
<artifactId>helidon-webserver</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.media</groupId>
|
|
<artifactId>helidon-media-jsonp</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.media</groupId>
|
|
<artifactId>helidon-media-multipart</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.config</groupId>
|
|
<artifactId>helidon-config-yaml</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.health</groupId>
|
|
<artifactId>helidon-health</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.health</groupId>
|
|
<artifactId>helidon-health-checks</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.metrics</groupId>
|
|
<artifactId>helidon-metrics</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.openapi</groupId>
|
|
<artifactId>helidon-openapi</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openapitools</groupId>
|
|
<artifactId>jackson-databind-nullable</artifactId>
|
|
<version>${version.jackson.databind.nullable}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.media</groupId>
|
|
<artifactId>helidon-media-jackson</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.webclient</groupId>
|
|
<artifactId>helidon-webclient</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-libs</id>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>io.helidon.build-tools</groupId>
|
|
<artifactId>helidon-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>third-party-license-report</id>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|